随笔-20  评论-35  文章-0  trackbacks-0

如果你想连接你的mysql的时候发生这个错误:

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

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

mysql -u root -pvmwaremysql>use mysql;mysql>update user set host = '%' where user = 'root';mysql>select host, user from user;

2. 授权法。例如,你想myuser使用mypassword从任何主机连接到mysql服务器的话。

GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;
如果你想允许用户myuser从ip为192.168.1.3的主机连接到mysql服务器,并使用mypassword作为密码
GRANT ALL PRIVILEGES ON *.* TO 'root'@'192.168.1.3' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;

GRANT ALL PRIVILEGES ON *.* TO 'root'@'10.10.40.54' IDENTIFIED BY '123456' WITH GRANT OPTION;

posted on 2008-09-17 11:08 coolies 阅读(66214) 评论(11)  编辑  收藏 所属分类: 数据库

评论:
# re: Mysql:is not allowed to connect to this MySQL server 2012-03-27 13:45 | hfzx
学习了,不错不错。  回复  更多评论
  
# re: Mysql:is not allowed to connect to this MySQL server 2012-12-20 18:16 | wanghu
hao  回复  更多评论
  
# re: Mysql:is not allowed to connect to this MySQL server[未登录] 2013-01-10 16:40 | wang
谢谢  回复  更多评论
  
# re: Mysql:is not allowed to connect to this MySQL server[未登录] 2013-08-01 17:40 | dada
博主厉害,解决了我的问题。  回复  更多评论
  
# re: Mysql:is not allowed to connect to this MySQL server 2014-02-28 14:57 | 宁安信息网
完全正确,但一定要记住改完表要重启MYSQL服务  回复  更多评论
  
# re: Mysql:is not allowed to connect to this MySQL server 2014-03-23 21:43 | 烟不离手
感谢楼主  回复  更多评论
  
# re: Mysql:is not allowed to connect to this MySQL server 2014-04-11 11:35 | 宁安信息网
有些东西其实不是你写的不对,只是不够细心  回复  更多评论
  
# re: Mysql:is not allowed to connect to this MySQL server 2014-07-05 14:40 | 友情链接
这个在哪里改呢?怎么找不到  回复  更多评论
  
# re: Mysql:is not allowed to connect to this MySQL server 2015-04-27 10:10 | 黑蕊罂粟
谢谢 整好了  回复  更多评论
  
# re: Mysql:is not allowed to connect to this MySQL server 2015-05-20 17:03 | 秦天
博主勃起!  回复  更多评论
  
# re: Mysql:is not allowed to connect to this MySQL server[未登录] 2016-02-17 13:48 | 小弟
博主厉害,解决了我的问题。  回复  更多评论
  

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


网站导航: