MySQL-1130-host ... is not allowed to connect to this MySql server
1、解决方式一:改表法~usermysql;~updateusersethost='%'whereuser='root';~selecthost,userfromuser;~flushprivileges;//刷新权限复制代码2、方法二:授权法//不限制IPGRANTALLPRIVILEGESON*.*TO'root'@'%'IDENTIFIEDBY'你的密码'WITHGRANTOPTION;fl