相关推荐recommended
Host is not allowed to connect to this MySQL server解决方法
作者:mmseoamin日期:2023-12-11

这个错误,其实就是我们安装的MySQL不允许远程登录,解决方法如下:

1. 在装有MySQL的机器上登录MySQL mysql -u root -p密码,执行如下命令

use mysql;
select host from user where user = 'root';

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

该结果表示是当前的root用户限制在当前的ip内访问的,需要修改他的访问域。

2. 执行命令:

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

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

3.执行 FLUSH PRIVILEGES 或者重启 MySQL 即可;

flush privileges;