首页 > 代码库 > 解决ERROR 1130: Host '*.*.*.*' is not allowed to connect to this MySQL server 方法

解决ERROR 1130: Host '*.*.*.*' is not allowed to connect to this MySQL server 方法

简单点
将阿里云ecs服务器内安装的mysql数据库里面的user表里面的Host为localhost的数据 将localhost改为% 如下图

技术分享

上面那种方法 非常简单是我安装了phpmyadmin的方法


也可以用命令行


#用命令访问mysql
mysql -u root -p

#使用mysql数据库
use mysql;

#查询当前用户情况,显示有2条记录,127.0.0.1;localhost;
select host, user from user;  

#把localhost这条记录的host改为 %; 意思是root可以由任何主机登录mysql,网上很多写法,都没有and host=‘localhost‘这个条件,经常报错。
update user set host = ‘%‘ where user = ‘root‘ and host=‘localhost‘;

#再次查询,可以看到host有3个;%;127.0.0.1;其实user表的主键是user字段和host字段的联合主键。
select host, user from user; 

#保险起见,重启mysql,Navicat Premium连接正常!万岁!
/etc/init.d/mysqld restart

解决ERROR 1130: Host '*.*.*.*' is not allowed to connect to this MySQL server 方法