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

mysql故障---is not allowed to connect to this MySQL server解决办法

时间:2018-02-28 16:28:38      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:serve   允许   mil   use   故障   mysq   pos   权限   span   

is not allowed to connect to this MySQL server解决办法

ERROR 1130: Host ’192.168.1.3′ is not allowed to connect to this MySQL server这是告诉你没有权限连接指定IP的主机,下面我们来看看解决办法。

处理方法有二个

1(如何解决客户端与服务器端的连接(mysql) xxx.xxx.xxx.xxx is not allowed to connect to this mysql serv 

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

 

mysql > GRANT ALL PRIVILEGES ON *.* TO ‘myuser’@‘%’ IDENTIFIED BY ‘mypassword’ WITH GRANT OPTION;

 

如果你想允许用户myuserip192.168.1.3的主机连接到mysql服务器,并使用mypassword作为密码

 

mysql > GRANT ALL PRIVILEGES ON *.* TO ‘root’@’192.168.1.3′ IDENTIFIED BY ‘mypassword’ WITH GRANT OPTION;

 

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

 

mysql故障---is not allowed to connect to this MySQL server解决办法

标签:serve   允许   mil   use   故障   mysq   pos   权限   span   

原文地址:https://www.cnblogs.com/bazingafraser/p/8483700.html

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