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 服务器。
# linux
# uroot
# false
# select
# 目录下
# 客户端
# 只允许
# 接了
# 本机
# 可以看到
# mysql
# host