DC2 Linux 系统授权 MySQL 外网访问

185****6786发表于:2018年06月22日 00:31:26

问题现象:

MySQL 无法通过外网连接。

问题原因:

在 MySQL 的 bin 目录下执行:

登陆到数据

mysql -uroot -p密码
use mysql;
select host,user,password from user;

可以看到 user 为 root,host 为 localhost 的话,说明 MySQL 只允许本机连接,那么外网,本地软件客户端就无法连接了。

解决方案:

执行如下命令:

update user set host='%' where user ='root';
flush privileges;

查看是否修改正常:

对于设置其他用户远程连接的方法:

GRANT ALL PRIVILEGES ON 数据库名.* TO 账户@"%" IDENTIFIED BY "密码";
flush privileges;

可以测试外网连接 MySQL 服务器。