首页 > 代码库 > 解决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 方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。