连接MySQL出现Host is not allowed to connect to this MySQL server 解决方法
作者:mmseoamin日期:2023-12-20

一、报错的原因?

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

二、解决步骤

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

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

2.以下命令按顺序执行

1):mysql -u root -p 这一步是连接数据库,输入密码(一般是原始密码)

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

2):use mysql;

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

3): update user set host = '%' where user = 'root';

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

4) : FLUSH PRIVILEGES;

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