1.查看防火墙状态
systemctl status firewalld.service
2.关闭防火墙
systemctl stop firewalld.service,关闭后再查看状态发现已经关闭。
3.但一旦服务器重启后,防火墙还会自动启动的。所以要使用systemctl disable firewalld.service命令来禁用防火墙,防止服务器重启自动开启。
4.打开防火墙方法
systemctl start firewalld.service 打开后再查看状态发现已经打开
5.开启防火墙开机启动。开启后服务器重启防火墙也会自动启动。
6.关闭selinux
找到/etc/selinux/config 文件把文件中的SELINUX=enforcing 改为SELINUXdisabled 即可