数据库
首页 > 数据库> > 【MySQL】mysql 远程访问不行解决方法 Host is not allowed to connect to this MySQL server

【MySQL】mysql 远程访问不行解决方法 Host is not allowed to connect to this MySQL server

作者:互联网

原文链接:https://www.jianshu.com/p/88aee14ad449

如果你想连接你的mysql的时候发生这个错误:
ERROR 1130: Host '******' is not allowed to connect to this MySQL server
原因可能是你的帐号不允许从远程登陆,只能在localhost。
解决方法:

命令:

mysql -u root -p root
mysql>use mysql
mysql>update user set host = '%' where user = 'root'
mysql>select host, user from user

GRANT ALL PRIVILEGES ON . TO 'root'@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;
如果你想允许用户root从ip为192.168.1.3的主机连接到mysql服务器,并使用mypassword作为密码
GRANT ALL PRIVILEGES ON . TO 'root'@'192.168.1.3' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON . TO 'root'@'10.10.40.54' IDENTIFIED BY '123456' WITH GRANT OPTION;

标签:OPTION,GRANT,mypassword,allowed,server,user,mysql,MySQL,root
来源: https://blog.csdn.net/qq_40969108/article/details/100182736