Navicat远程连接数据库出现错误:1130-host ... is not allowed to connect to this MySql server

参考链接:https://blog.csdn.net/dabao87/article/details/80571877

出现这个问题就是说没有给远程连接权限

Navicat远程连接数据库出现错误:1130-host ... is not allowed to connect to this MySql server

1、命令行登录mysql

mysql -u root -p

2、查看当前表中的数据库  

show databases;

Navicat远程连接数据库出现错误:1130-host ... is not allowed to connect to this MySql server

 3、进入到mysql数据库

Navicat远程连接数据库出现错误:1130-host ... is not allowed to connect to this MySql server

 4、查看当前数据库下,用户表的数据(主机,用户,密码)

select Host, User,Password from user;

Navicat远程连接数据库出现错误:1130-host ... is not allowed to connect to this MySql server

 5、修改user表主机

%的意思:

Host列指定了允许用户登录所使用的IP,比如user=root Host=192.168.1.1。这里的意思就是说root用户只能通过192.168.1.1的客户端去访问。
  而%是个通配符,如果Host=192.168.1.%,那么就表示只要是IP地址前缀为“192.168.1.”的客户端都可以连接。如果Host=%,表示所有IP都有连接权限。、
  这也就是为什么在开启远程连接的时候,大部分人都直接把Host改成%的缘故,为了省事。
update user set Host='%' where User='root';

Navicat远程连接数据库出现错误:1130-host ... is not allowed to connect to this MySql server

 6、查看用户表数据

Navicat远程连接数据库出现错误:1130-host ... is not allowed to connect to this MySql server

 7、测试连接

Navicat远程连接数据库出现错误:1130-host ... is not allowed to connect to this MySql server

上一篇:Navicat 报 1130 - Host XXX is not allowed to connect to this MySQL server 错误提示的解决办法


下一篇:MySQL 1130错误,无法远程连接