美文网首页
1130 - Host XXX is not allowed t

1130 - Host XXX is not allowed t

作者: 天山海梦 | 来源:发表于2021-09-12 00:22 被阅读0次

1.用Navicat配置远程连接Mysql数据库时遇到如下报错信息

1130 - Host XXX is not allowed to connect to this MySQL server。

2.在安装Mysql数据库的主机上登录root用户:mysql -uroot -p

3.执行:
use mysql;

再执行:select host from user where user='root';


16b543c6757fc83bb5ef1491c57ea53.png

4将Host设置为通配符% 表示任何远程可以访问

执行:update user set host = '%' where user ='root';

5.执行: flush privileges; 表示立即生效;

6.navicat 成功连接至到mysql

相关文章

网友评论

      本文标题:1130 - Host XXX is not allowed t

      本文链接:https://www.haomeiwen.com/subject/didzwltx.html