mysql5.5解决报错:错误1130- Host xxx is not allowed to connect to this Mysql server

使用远程连接工具,连接新搭建的mysql服务器,出现上述错误提示。
新搭建的数据库不允许远程连接,修改如下:
这个时候只要在localhost的那台电脑,登入MySQL后,更改 "mysql" 数据库里的 "user" 表里的 "host" 项,从"localhost"改称"%"
mysql -u root -p
mysql>use mysql;
mysql>update user set host = '%' where user = 'root' and host='localhost';
mysql>select host, user from user;
然后重启MySQL服务。或再执行 执行一个语句 mysql>flush privileges 使修改生效。

https://blog.csdn.net/ly_dengle/article/details/77835882

你可能感兴趣的:(mysql5.5解决报错:错误1130- Host xxx is not allowed to connect to this Mysql server)