欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

通过Navicat for MySQL远程连接的时候报错mysql 1130的解决方法

程序员文章站 2023-11-25 20:18:43
通过Navicat for MySQL远程连接的时候报错mysql 1130的解决方法...
navicat for mysql 1130错误 用navicat连接远程mysql,提示如下错误,我以为是自己的防火墙问题,但是关了,依然不行。

我认为这段英文,有点误导,让人感觉是自己这边出了问题。

看解决方法吧

error 1130: host '192.168.1.3' is not allowed to connect to thismysql server

解决方法:
1。改表法。可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改"mysql" 数据库里的 "user" 表里的 "host"项,从"localhost"改称"%"

mysql -u root -pvmwaremysql>usemysql;mysql>update user set host = '%' where user ='root';mysql>select host, user from user;

2.授权法。例如,你想myuser使用mypassword从任何主机连接到mysql服务器的话。

grant all privileges on *.* to identified by 'mypassword' withgrant option;
如果你想允许用户myuser从ip为192.168.1.3的主机连接到mysql服务器,并使用mypassword作为密码
grant all privileges on *.* to identified by'mypassword' with grant option;

方法二:

错误代码是1130,error 1130: host xxx.xxx.xxx.xxx is not allowed to connect to this mysql server 是无法给远程连接的用户权限问题

给用户授权

我用的用户是root 密码123456

首选语法为:
sql代码
grant all privileges on *.* to 'myuser'@'%' identified by 'mypassword' with grant option;

示例:
sql代码
grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;

执行完后,再
mysql:flush privileges;
刷新一下权限就可以了,不用重启

完整操作:

开始->运行->cmd
cd\
cd mysql安装目录\bin
mysql -u root -p123456;
mysql grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;
mysql flush privileges;

作者 heisetoufa
相关标签: MySQL 1130