Last updated 6 years ago
Was this helpful?
Navicat连接云服务器的mysql报1130,内容是Host"xxx.xxx.xx.xx"is not allowed...
解决方法(来源于网络)
可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改"mysql" 数据库里的 "user" 表里的 "host"项,从"localhost"改称"%"
总体运行语句:
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'mysqlpswd' WITH GRANT OPTION; flush privileges;