Navicat连接MySQL报错:1130 - Host ‘xxx.xxxx’ is not allowed to connect to this MySQL server

远程连接MySQL遇到的问题

笔者的MySQL是装在Windows本地

Navicat连接MySQL报错:1130 - Host ‘xxx.xxxx’ is not allowed to connect to this MySQL server_第1张图片

解决方法(一)

  • 使用管理员root账号,通过Navicat连接本地的数据库
    Navicat连接MySQL报错:1130 - Host ‘xxx.xxxx’ is not allowed to connect to this MySQL server_第2张图片
  • 连接成功后,进入数据库,点击管理用户
    Navicat连接MySQL报错:1130 - Host ‘xxx.xxxx’ is not allowed to connect to this MySQL server_第3张图片
  • 进入管理用户页面,编辑需要远程连接的用户,将主机输入框的值改成“%”,点击确定即可
    Navicat连接MySQL报错:1130 - Host ‘xxx.xxxx’ is not allowed to connect to this MySQL server_第4张图片
  • 使用Navicat远程连接本地电脑MySQL数据库,连接成功
    Navicat连接MySQL报错:1130 - Host ‘xxx.xxxx’ is not allowed to connect to this MySQL server_第5张图片

解决方法(二)

  • 通过CLI模式(命令窗口)连接MySQL数据库
mysql -uroot -p
-- 输入空密码,回车登录

如果连接报错:1045;则参考文章解决MySQL登录报错:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: No)。

  • 切换到mysql库
mysql> use mysql;
  • 查看user表中User字段为root的主机是否是localhost
mysql> select Host,User,Password from user;
  • 修改user表中的root用户的主机为%
mysql> update user set Host=%where User=“root”;

你可能感兴趣的:(数据库)