mysql连接报错:1130 - Host '10.50.20.116' is not allowed to connect to this MySQL server

报错如图所示:

 

解决方法:

1、连接服务器:mysql -u root -p

 

2、进入mysql数据库:use mysql;

 

3、查看数据库中所有表:show tables;

 

4、查看表中所有的数据:select host,user,password from user;

 

 如果在Navica中登录的用户名不是localhost就都会被not allowed,可以将host修改为通配符%

 修改user表中的host

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

 

5、刷新mysql数据库:flush privileges;

 

6、打开Navicat成功连接mysql数据库

 

posted @ 2022-08-11 16:25  凡是過往;皆為序章  阅读(82)  评论(0编辑  收藏  举报