1. 首先判断防火墙是否关闭

1:查看防火状态

systemctl status firewalld

2:暂时关闭防火墙

systemctl stop firewalld

但是重新启动 linux 时,防护墙会重新是开启的状态

3:永久关闭防火墙

systemctl disable firewalld

2.修改

1)切换到mysql数据库

use mysql;

2)发现root用户只运行localhost访问,修改为允许任何地址访问

update user set Host='%' where User='root';

3)刷新权限

flush privileges;
Logo

更多推荐