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

MySQL 1130错误,无法远程连接

时间:2020-07-03 15:33:45      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:解决办法   roo   服务   mysql   update   connect   错误   oca   更改   

错误:ERROR 1130: Host ‘192.168.1.3‘ is not allowed to connect to thisMySQL serve

错误1130:主机192.168.1.3”不允许连接到thismysql服务

原因:被连接的数据不允许使用 192.168.1.3访问,只允许是用 localhost;

解决办法:

帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改"mysql" 数据库里的 "user" 表里的 "host"项,从"localhost"改称"%"

update user set host = ‘%‘ where user =‘root‘;

flush privileges;

MySQL 1130错误,无法远程连接

标签:解决办法   roo   服务   mysql   update   connect   错误   oca   更改   

原文地址:https://www.cnblogs.com/EHXS/p/13230419.html

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