背景:在阿里云上面安装好mysql之后,远程链接不上。出现下图错误:

Mysql 链接 1130-Host xxx is not allowed to connect to this MySQL server

解决方法如下:

 

Mysql 链接 1130-Host xxx is not allowed to connect to this MySQL server

测试:

Mysql 链接 1130-Host xxx is not allowed to connect to this MySQL server

所有命令如下:

mysql -uxxx -pxxx

use mysql;

update user set host = '%' where User = 'xxx';

flush privileges;

相关文章: