Host XXX is not allowed to connect to this MySQL server
Posted qian-520
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Host XXX is not allowed to connect to this MySQL server相关的知识,希望对你有一定的参考价值。
前言:
在多数据库开发模式中 ,难免会用到mysql
在搭建数据库的时候 ,可能并没有设置用户可以远程访问
如以下报错
这时候我们在数据库中执行以下命令
use mysq; select host from user where user=‘root‘;
数据库中并没有远程访问标识
将Host设置为通配符%
update user set host = ‘%‘ where user =‘root‘;
Host修改完成后记得执行flush privilegs使配置立即生效,或者直接重启服务
以上是关于Host XXX is not allowed to connect to this MySQL server的主要内容,如果未能解决你的问题,请参考以下文章