Navicat连接错误1130:is not allowed to connect to this mysql server

2022/7/31 2:52:58

本文主要是介绍Navicat连接错误1130:is not allowed to connect to this mysql server,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

使用Navicat连接远程数据库的时候,发生连接错误is not allowed to connect to this mysql server。

后来查了各种资料,就是连接的用户没有远程访问权限。
处理办法,给连接的用户加上远程访问权限。
以root用户为例。

1.先登录到远程仓库的mysql。

mysql -u root -p

image

2.进入mysql数据库。

use mysql;

image

3.查看user表的host字段

select host from user where user='root';

image

这些是允许访问数据库的地址。我们可以追加一条也可以直接将localhost改成%允许所有地址使用这个
用户访问。

4.更改host字段允许远程访问

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

image
然后再查看一下这个字段的字
select host from user where user='root';

image

5.更新设定

flush privileges;

image
这样重新使用navicat重新连接,就可以连接成功了。



这篇关于Navicat连接错误1130:is not allowed to connect to this mysql server的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程