MyBatis3 连接MySQL8 提示:message from server: “Host ‘xxx‘ is not allowed to connect to this MySQL server

发布时间 2023-07-23 02:23:37作者: 老铁来了啊

1、本机搭建mysql,使用mybatis连接提示如下错误信息:

message from server: "Host 'xxx' is not allowed to connect to this MySQL server

造成上述的错误的原因:
数据库连接的账户不允许从远程登陆,只允许使用localhost连接。

2.解决办法
修改mysql数据库中的 "user" 表里的 "host" 字段,从"localhost"改称"%"

use mysql;
update user set host = '%' where user = 'root';
flush privileges;