navicat连接mysql报错1130-host ... is not allowed to connect to this MySql server的解决办法
原因:没有权限解决办法:1、连接服务器:mysql-uroot-p2、看当前所有数据库:showdatabases;3、进入mysql数据库:usemysql;4、查看mysql数据库中所有的表:showtables;5、查看user表中的数据:selecthost,userfromuser;6、修改user表中的Host:updateusersethost='%'whereuser='root'