转:mysql远程连接 Host * is not allowed to connect to this MySQL server
程序员文章站
2022-06-25 08:17:15
在本机登入mysql后,更改"mysql"数据库里的"user"表里的"host"项,从"localhost"改为'%'。 代码如下 mysql> mysql>use mysql; mysql>select 'host' from user where user='root'; #查看mysql库中 ......
在本机登入mysql后,更改"mysql"数据库里的"user"表里的"host"项,从"localhost"改为'%'。
代码如下
mysql>
mysql>use mysql;
mysql>select 'host' from user where user='root';
#查看mysql库中的user表的host值(即可进行连接访问的主机/ip名称)
先说说这个错误,其实就是我们的mysql不允许远程登录,所以远程登录失败了,解决方法如下:
- 在装有mysql的机器上登录mysql mysql -u root -p密码
- 执行
use mysql;
- 执行
update user set host = '%' where user = 'root';
这一句执行完可能会报错,不用管它。 -
执行
flush privileges;
经过上面4步,就可以解决这个问题了。
注: 第四步是刷新mysql的权限相关表,一定不要忘了,我第一次的时候没有执行第四步,结果一直不成功,最后才找到这个原因。
上一篇: MySQL 锁的一些简单概念
下一篇: 一起学Android之Intent
推荐阅读
-
连接Mysql提示Can’t connect to local MySQL server through socket的解决方法
-
MySQL连接错误:Can't connect to MySQL server on'localhost' (10055)
-
Mysql远程连接 Host * is not allowed to connect to this MySQL server
-
远程连接MariaDB报错——1130 - Host '192.168.64.1' is not allowed to connect to this MariaDB server
-
windows 连接 linux 上的mysql出现Can't connect to; is not allowed to connect;Access denied for user
-
MySQL 1130 - Host 127.0.0.1 is not allowed to connect to this MySQL server
-
云服务器Ubuntu_Server_16.04.1安装MySQL并开启远程连接的方法
-
Navicat 连接 MySQL 失败 : 1130 - Host xxx is not allowed to connect to this MySQL server
-
MYSQL Error 1130:Host '计算机名' is not allowed to connect to this MySQL server
-
云服务器Ubuntu_Server_16.04.1安装MySQL并开启远程连接