服务器连接mysql数据库,报错message from server: “Host xxx is not allowed to connect to this MySQL server“

操作系统 Windows

开发工具:IDEA

数据库:MySQL


使用MyBatis访问数据库的表提示错误信息:
message from server: "Host xxx is not allowed to connect to this MySQL server"
意思:拒绝主机为xxx访问连接MySQL服务器
原因:MySQL为了安全起见,只允许本机访问该数据库

解决方法:刷新root权限


第一:打开CMD命令控制台

输入cmd
服务器连接mysql数据库,报错message from server: “Host xxx is not allowed to connect to this MySQL server“_第1张图片

第二:进入本机安装MySQL的bin目录下

输入你自己MySQL安装环境下的bin目录
服务器连接mysql数据库,报错message from server: “Host xxx is not allowed to connect to this MySQL server“_第2张图片

第三:启动MySQL

输入net start mysql
服务器连接mysql数据库,报错message from server: “Host xxx is not allowed to connect to this MySQL server“_第3张图片

第四:进入mysql这个数据库

输入mysql -u 账户名 -p
你的密码

我的账户名:
root
我的密码:
123456
服务器连接mysql数据库,报错message from server: “Host xxx is not allowed to connect to this MySQL server“_第4张图片
看到mysql这个就说明启动成功了。

服务器连接mysql数据库,报错message from server: “Host xxx is not allowed to connect to this MySQL server“_第5张图片

第五:更改root权限

输入use mysql;
输入update user set host = "%" where user = "root";
服务器连接mysql数据库,报错message from server: “Host xxx is not allowed to connect to this MySQL server“_第6张图片

第六:刷新权限

输入flush privileges;
服务器连接mysql数据库,报错message from server: “Host xxx is not allowed to connect to this MySQL server“_第7张图片

第七:查看是否更改成功

输入select host, user from user;
服务器连接mysql数据库,报错message from server: “Host xxx is not allowed to connect to this MySQL server“_第8张图片

第八:重启MySQL

输入exit
服务器连接mysql数据库,报错message from server: “Host xxx is not allowed to connect to this MySQL server“_第9张图片

输入mysql -u 账户名 -p
服务器连接mysql数据库,报错message from server: “Host xxx is not allowed to connect to this MySQL server“_第10张图片

第九:IDEA测试连接

服务器连接mysql数据库,报错message from server: “Host xxx is not allowed to connect to this MySQL server“_第11张图片
连接成功!

你可能感兴趣的:(Mybatis,IDEA踩雷日记,搭建环境,mysql,数据库,idea,java,mybatis)