当前位置: 代码迷 >> 综合 >> 1130 - Host ‘***‘ is not allowed to connect to this MySQL server
  详细解决方案

1130 - Host ‘***‘ is not allowed to connect to this MySQL server

热度:79   发布时间:2023-12-26 16:46:33.0

1130 - Host ‘***’ is not allowed to connect to this MySQL server的解决办法

在这里插入图片描述
报错原因:此时的MySQL配置不支持远程连接
解决办法:修改配置

1.linux进入数据库
mysql -u root -p 密码
2.查看配置
select host, user from user;

在这里插入图片描述

3.修改配置
update user set host = '%' where user ='root';
4.执行以下命令使之生效
flush privileges;

修改完成,可以连接

  相关解决方案