当前位置:首页 > Mysql教程 > 列表

连接mysql数据库Error No 1130的错误解决方法

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-18 15:56:44 浏览: 评论:0 

在使用客户端连接mysql数据库时出现Error No.1130 Host 192.168.0.14 is not allowed to connect to this MySQL server错误提示了,下面我们一起来看问题解决技巧.

使用mysql的客户端连接到mysql的服务端时,出现如下错误:

Error No. 1130

Host '192.168.0.14' is not allowed to connect to this MySQL server

解决方法:

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

  1. mysql -u root -pvmwaremysql 
  2. >use mysql; 
  3. mysql>update user set host = '%' where user = 'root'
  4. 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作为密码,代码如下:

  1. 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
  2. mysql> flush privileges;  --phpfensi.com 
  3. mysql> exit 

友情提示,出现这种情况是因为mysql服务器出于安全考虑,默认只允许本地登录数据库服务器,如果不常用我们还是关了这个功能的好.

Tags: Error1130 连接mysql

分享到: