300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > mysql8.0提示is not allowed to connect to this MySQL server

mysql8.0提示is not allowed to connect to this MySQL server

时间:2020-10-09 18:00:19

相关推荐

mysql8.0提示is not allowed to connect to this MySQL server

出现这种情况的原因是因为:

mysql数据库只允许自身所在的本机器连接,不允许远程连接。

解决:

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

use mysql;

select host from user where user='root';

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

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

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

然后 刷新配置

flush privileges;

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

然后我们再次进行连接

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。