Host is not allowed to connect to this MySQL server解决方法

先说说这个错误,其实就是我们的MySQL不允许远程登录,所以远程登录失败了,解决方法如下:

  1. 在装有MySQL的机器上登录MySQL mysql -u root -p密码
  2. 执行use mysql;
  3. 执行update user set host = ‘%‘ where user = ‘root‘;
  4. 执行FLUSH PRIVILEGES;

    经过上面4步,就可以解决这个问题了

Host is not allowed to connect to this MySQL server解决方法

上一篇:mysql dos常用命令


下一篇:数据库部分刷题知识总结(二)