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

MYSQL ERROR 1130: Host is not allowed to connect to this MySQL server

时间:2014-08-28 11:02:49      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:os   使用   io   问题   sp   on   管理   c   sql   

今天安装MYSQL遇到MYSQL ERROR 1130: Host is not allowed to connect to this MySQL server,

 

试了很多办法都不行

skip-grant-tables 放在my.ini [mysqld]

1、更改任意主机登陆

mysql> use mysql;  

mysql> update user set host = ‘%‘ where user = ‘root‘ and host=‘localhost‘;  

2、更新权限

mysql> GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘123456‘ WITH GRANT OPTION;

遇到error 1133:can‘t finde any matching row in the user table

始终不能使用,最后分析安装时有提示远程连接出错可能造成USER表出错,把所有用户删除,添加一个新的管理员解决问题。

 

MYSQL ERROR 1130: Host is not allowed to connect to this MySQL server

标签:os   使用   io   问题   sp   on   管理   c   sql   

原文地址:http://www.cnblogs.com/macil/p/3940952.html

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