通过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
我认为这段英文,有点误导,让人感觉是自己这边出了问题。
看解决方法吧
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远程连接不上的解决方法
-
通过Navicat for MySQL远程连接的时候报错mysql 1130的解决方法
-
navicat连接mysql时出现1045错误的解决方法
-
解决Navicat远程连接MySQL出现 10060 unknow error的方法
-
解决Navicat连接远程MySQL很慢的方法
-
远程连接mysql出现1130的错误
-
navicat for mysql远程连接ubuntu服务器的mysql数据库
-
Linux连接mysql报错:Access denied for user ‘root’@‘localhost’(using password: YES)的解决方法
-
linux配置mysql数据库远程连接失败的解决方法
-
PHP远程连接MYSQL数据库非常慢的解决方法