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

Mysql远程连接报错:SQL Error (1130): Host '192.168.6.128' is not allowed to connect to this MySQL server

时间:2019-03-07 10:30:43      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:lin   步骤   HERE   mysql远程连接   登录   通过   mysq   local   not   

通过SQLyog连接linux中的MySQL报错问题:
SQL Error (1130): Host ‘192.168.6.128‘ is not allowed to connect to this MySQL server
说明你所连接的用户账户没有远程连接的权限,只能在本机localhost登录
需要更改 mysql 数据库里的 user表里的 host字段 把localhost改称%
下面是我设置的远程连接步骤,请参考:
 1.登录MySQL
  mysql -uroot -proot
2.进入数据库
  use mysql;
3.查看是否有user表
 show tables;
4.更改lost字段值
 update user set host=‘%‘ where host = ‘localhost‘;
5.刷新
 flush pricilges;
6.查看
 select host,user from user;

出现上面的界面,说明远程连接成功,最后quit退出了

Mysql远程连接报错:SQL Error (1130): Host '192.168.6.128' is not allowed to connect to this MySQL server

标签:lin   步骤   HERE   mysql远程连接   登录   通过   mysq   local   not   

原文地址:https://www.cnblogs.com/hailong88/p/10487815.html

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