当前位置:   article > 正文

[MySQL]解决mysql数据库连接报错:is not allowed to connect to this mysql server

is not allowed to connect to this mysql server

这是因为
mysql数据库只允许自身所在的本机器连接,不允许其他机器远程连接。

如果是root用户,执行sql语句:

  1. use mysql;
  2. select host from user where user='root';

如果是localhost ,那么就是只允许本地连接

  1. update user set host = '%' where user ='root';
  2. flush privileges;

这样就可以了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/694656
推荐阅读
相关标签
  

闽ICP备14008679号