解决MySQL远程连接出错(1130)

问题

image

原因

报错原因就是没有给用户添加远程权限。

解决

登录MySQL

命令:mysql -uroot -proot
image
参数说明:

  • -u 用户名
  • -p 密码

进入mysql库

命令:use mysql;
image

查看mysql库中user表中host字段的值

命令:select host from user where user = 'root';
image

修改host值(以通配符%的内容增加主机/IP地址)

命令:update user set host = '%' where user = 'root';
image

刷新列表,使其生效

命令:flush privileges;
image
完成以上操作,重新测试连接,可以连接成功。
image

posted @ 2022-03-14 11:10  寒爵  阅读(112)  评论(0编辑  收藏  举报