如何解决1130 - Host ‘172.17.0.1‘ is not allowed to connect to this MySQL server的问题
作者:NO.北极找北
这篇文章主要介绍了如何解决1130 - Host ‘172.17.0.1‘ is not allowed to connect to this MySQL server的问题,本文给大家介绍的非常详细,感兴趣的朋友跟随小编一起看看吧
1、docker pull mysql 安装mysql
2、启动mysql容器:docker run --name mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=123456 -d mysql
使用Navicat连接会报 1130 - Host '172.17.0.1' is not allowed to connect to this MySQL server
按下面步骤修改:
6、连接mysql数据库:docker exec -it mysql bash
7、连接服务器: mysql -u root -p
8、看当前所有数据库:show databases ; 空格加分号
9、进入mysql数据库:use mysql ;
10、查看mysql数据库中所有的表:show tables ;
11、查看user表中的数据:select Host, User from user ;
12、修改user表中的Host: update user set Host='%' where User='root' ;
13、最后刷新一下:flush privileges ;
Navicat连接成功
到此这篇关于如何解决1130 - Host ‘172.17.0.1‘ is not allowed to connect to this MySQL server的问题的文章就介绍到这了,更多相关1130 - Host ‘172.17.0.1内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!