客户端连接mysql时提示“Host is not allowed to connect to this MySQL server”
解决办法:
1、通过mysql主机,执行mysql -u root -p,进入数据库
2、把mysql数据库中的user表对应的root用户host字段值改成“%”
use mysql
update user set host = '%' where user = 'root';
执行这两个sql后,重启数据库,客户端就能访问了,因为host默认的时localhost才能访问数据库。