mysql数据库连接报错:is not allowed to connect to this mysql server


is not allowed to connect to this MySQL server

服务器上面安装的mysql数据库在本地连接的时候报错:is not allowed to connect to this MySQL server

 mysql数据库连接报错:is not allowed to connect to this mysql server

 

 

出现这种情况的原因是因为:
mysql数据库只允许自身所在的本机器连接,不允许远程连接。

解决:
在mysql所在服务器上面登录进mysql数据库中:

mysql -u root -p

mysql数据库连接报错:is not allowed to connect to this mysql server

 

 

进入到mysql数据库中:

use mysql;

select host from user where user=’root’;

可以看到 我们执行查询语句得到的数据结果中 host 的值是 localhost

mysql数据库连接报错:is not allowed to connect to this mysql server

 

 

我们执行update语句把权限进行修改

update user set host = ‘%’ where user =’root’;
然后 刷新配置
flush privileges;

mysql数据库连接报错:is not allowed to connect to this mysql server

 

 

如图所示 可以看到已经修改成功

然后我们再次进行连接

mysql数据库连接报错:is not allowed to connect to this mysql server

 

 

————————————————
版权声明:本文为CSDN博主「鱼大虾」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_42599091/article/details/125224850

原创文章,作者:kepupublish,如若转载,请注明出处:https://blog.ytso.com/275307.html

(0)
上一篇 2022年7月19日
下一篇 2022年7月19日

相关推荐

发表回复

登录后才能评论