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

当连接数据库时出现下面的报错(我的是在linux上面新建数据库后在windows的navicat连接数据库时报的下面的错误)

“ERROR 1130 (HY000): Host x.x.x.x is not allowed to connect to this MySQL server” 

按照下面步骤来操作

  1. SELECT host FROM mysql.user WHERE user = "database_username"; database_username我的是root,你根据你自己的设置。出现下面的查询结果1130 : Host is not allowed to connect to this MySQL server_第1张图片
  2. 然后依次输入下面语句:
GRANT ALL ON database_name.* to 'database_username'@'10.24.96.5' IDENTIFIED BY 'database_password';
FLUSH PRIVILEGES;
SELECT host FROM mysql.user WHERE user = "database_username";

@后面的ip地址就是你自己的linux的ip地址,或windows的ip地址

  1. 最后要让用户从网络上的所有主机远程访问输入下面的语句
 GRANT ALL ON database_name.* to 'database_username'@'10.24.96.%' IDENTIFIED BY 'database_password';

自己按照自己的mysql相关的配置设置

  1. 最后登录应该就可以了

你可能感兴趣的:(数据库,服务器,mysql)