MySQL Community Downloads Mysql下载地址:https://dev.mysql.com/downloads/installer/
下载好安装版本的程序,直接选择按装仅服务器端,不需要安装客户端程序。
要让外网能够访问Mysql数据库,需要新建一个用户,如zhang,root不能供外网用的。
安装时就可以添加一个用户了,不必后再手动再添加的。
要在服务器管理后面开通Mysql的端口号,3306。
DBeaver当连接 MySQL 时出现 "Public Key Retrieval is not allowed" 错误,改下数据库连接属性,把对应值改为True即可。
手动命令行创建一个数据库
Enter password: ********
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 12
Server version: 8.0.43 MySQL Community Server - GPL
Copyright (c) 2000, 2025, Oracle and/or its affiliates.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> create database zhougongjiemeng
-> ;
Query OK, 1 row affected (0.01 sec)
mysql>