navicat连接mysql报Host is not allowed to connect to this MySQL server解决方法
在linux上装好mysql后可以本地登录,但是在navicat中连接发现报错hostisnotallowedtoconnecttothisMySQLserver原因:简单来说就是mysql不允许远程登录解决办法:1.本地登录mysql,mysql-uroot-p密码2.执行usemysql;3.执行updateusersethost=‘%’whereuser=‘root’;4.执行FLUSHPR