码迷,mamicode.com
首页 > 数据库 > 详细

Host is not allowed to connect to this MySQL server解决方法

时间:2020-06-20 10:58:46      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:code   serve   登录   his   not   set   user   connect   date   

先说说这个错误,其实就是我们的MySQL不允许远程登录,所以远程登录失败了,解决方法如下:

  1. 在装有MySQL的机器上登录MySQL mysql -u root -p密码
  2. 执行use mysql;
  3. 执行update user set host = ‘%‘ where user = ‘root‘;
  4. 执行FLUSH PRIVILEGES;

    经过上面4步,就可以解决这个问题了

Host is not allowed to connect to this MySQL server解决方法

标签:code   serve   登录   his   not   set   user   connect   date   

原文地址:https://www.cnblogs.com/wlx6/p/13167590.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!