连接云服务器上的mysql报错 [HY000][1130] null, message from server: "Host 'ip' is not allowed to connect to this MySQL server".
解决方法:
1、连接mysql
2、use mysql 进入mysql库
3、输入语句update user set host = '%' where user = 'root';
4、输入语句flush privileges;
5、再次连接,即可连接成功