标签:code serve 登录 his not set user connect date
先说说这个错误,其实就是我们的MySQL不允许远程登录,所以远程登录失败了,解决方法如下:
use mysql;
update user set host = ‘%‘ where user = ‘root‘;
执行FLUSH PRIVILEGES;
经过上面4步,就可以解决这个问题了
Host is not allowed to connect to this MySQL server解决方法
标签:code serve 登录 his not set user connect date
原文地址:https://www.cnblogs.com/wlx6/p/13167590.html