Rising Sun

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  148 随笔 :: 0 文章 :: 22 评论 :: 0 Trackbacks

在使用MySQL-Front连接mysql的时候发生的这个错误

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

更改 mysql 数据库里的 user表里的 host项
localhost改称%

mysql -u root -p

mysql>use mysql;

mysql>update user set host = '%'  where user ='root';

mysql>flush privileges;

mysql>select 'host','user' from user where user='root';

现在就可以连接了! 

权限

 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' with grant option;

posted on 2009-04-13 16:52 brock 阅读(4417) 评论(1)  编辑  收藏

评论

# re: ERROR 1130: Host 192.168.88.160 is not allowed to connect to this MySQL server 2010-06-18 18:27 czm
Duplicate entry '%-root' for key 'PRIMARY'
  回复  更多评论
  


只有注册用户登录后才能发表评论。


网站导航: