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

Posted winner-0715

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Host is not allowed to connect to this MySQL server解决方法相关的知识,希望对你有一定的参考价值。

今天在Linux上面装完mysql,却发现在本地登录可以,但是远程登录却报错

ERROR 1130: Host ‘192.168.1.3‘ is not allowed to connect to this MySQL server

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

1.在装有MySQL的机器上登录MySQL:mysql -uroot -p密码
2.选择我mysql库,执行use mysql;
3.更新user表,执行update user set host = ‘%‘ where user = ‘root‘;这一句执行完可能会报错,不用管它。
4.执行FLUSH PRIVILEGES;

经过上面4步,就可以解决这个问题了。
注: 第四步是刷新MySQL的权限相关表,一定不要忘了,我第一次的时候没有执行第四步,结果一直不成功,最后才找到这个原因。





以上是关于Host is not allowed to connect to this MySQL server解决方法的主要内容,如果未能解决你的问题,请参考以下文章

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

ERROR 1130: Host ’...′ is not allowed to connect to this MySQL server

Host '127.0.0.1' is not allowed to connect to this MySQL server

报错:1130-host ... is not allowed to connect to this MySql server

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

1130-host ... is not allowed to connect to this MySql server