Mysql 设置允许外部连接
错误信息: SQL Error (1130): Host ‘xxx’ is not allowed to connect to this MySQL server 说明所连接的用户帐号没有远程连接的权限,只能在本机(localhost)登录。需更改 mysql 数据库里的 user表里的 host项把localhost改称% 。
进入 mysql ,依次执行以下命令:
use mysql;
update user set host = ‘%’ where user =’root’;
flush privileges;
quit
参考自:脚本之家——https://www.jb51.net/article/53847.htm