1.Host is not allowed to connect to this MySQL server解决方法
- 在装有MySQL的机器上登录MySQL mysql -u root -p密码
- 执行
use mysql;
- 执行
update user set host = ‘%‘ where user = ‘root‘;
这一句执行完可能会报错,不用管它。 -
执行
FLUSH PRIVILEGES;
参考:https://blog.csdn.net/qq_23689053/article/details/79138462