连接MySQL出现Host is not allowed to connect to this MySQL server 解决方法

连接MySQL出现Host is not allowed to connect to this MySQL server 解决方法

码农世界 2024-05-27 后端 70 次浏览 0个评论

一、报错的原因?

英语翻译 — ‘不允许主机连接到此MySQL服务器’ (意思是本地账号连接可以登录,但是远程登陆不行)

二、解决步骤

1.打开cmd 进入到mysql的bin文件

2.以下命令按顺序执行

mysql -u root -P 3306 -p      这一步是连接数据库,输入密码(一般是原始密码)
use mysql;
update user set host = '%' where user = 'root'; 
flush privileges;

连接MySQL出现Host is not allowed to connect to this MySQL server 解决方法

连接MySQL出现Host is not allowed to connect to this MySQL server 解决方法

转载请注明来自码农世界,本文标题:《连接MySQL出现Host is not allowed to connect to this MySQL server 解决方法》

百度分享代码,如果开启HTTPS请参考李洋个人博客
每一天,每一秒,你所做的决定都会改变你的人生!

发表评论

快捷回复:

评论列表 (暂无评论,70人围观)参与讨论

还没有评论,来说两句吧...

Top