目录
(1)systemctl status firewalld 查看当前的防火墙状态
(1)systemctl stop firewalld 暂时关闭防火墙
(2)systemctl disable firewalld 永久关闭防火墙 (需要重新启动系统才能生效)
(1)systemctl start firewalld 临时启动防火墙
(2)systemctl enable firewalld 永久启动防火墙(需要重新启动系统才能生效)
(3)如果遇到不能重启,可能是firewalld服务被锁定了,可能是使用下面命令
systemctl unmask firewalld 解开firewalld的锁定
systemctl start firewalld.service
(2)cat /etc/selinux/config 查看selinux的配置文件看状态
(3)vi /etc/selinux/config 永久关闭setenforce
一.查看防火墙的状态命令
(1)systemctl status firewalld 查看当前的防火墙状态
防火墙开启状态
防火墙关闭状态
二.暂时/永久关闭防火墙命令
(1)systemctl stop firewalld 暂时关闭防火墙
重启系统,你会发现,防火墙又是开启状态
(2)systemctl disable firewalld 永久关闭防火墙 (需要重新启动系统才能生效)
用reboot命令重启,防火墙就永久关闭了
三.临时/永久启动防火墙
(1)systemctl start firewalld 临时启动防火墙
重启系统之后,你就会发现还是关闭的。
(2)systemctl enable firewalld 永久启动防火墙(需要重新启动系统才能生效)
用reboot命令重启
(3)如果遇到不能重启,可能是firewalld服务被锁定了,可能是使用下面命令
systemctl unmask firewalld 解开firewalld的锁定
systemctl start firewalld.service
四.查看SELinux状态
(1)getenforce 查看当前SELinux状态
Enforcing——开启状态
Permissive——关闭状态
(2)cat /etc/selinux/config 查看selinux的配置文件看状态
五.临时/永久关闭SELinux
(1)setenforce 0 临时禁用selinux
这是因为权限问题
(2)su - root 提到root权限,在执行setenforce 0就可以了
(3)vi /etc/selinux/config 永久关闭setenforce
SELINUX=enforcing(开启)
标签:SELinux,防火墙,firewalld,CentOS7,systemctl,关闭,selinux,永久 From: https://blog.csdn.net/2301_79096184/article/details/134150135SELINUX=disabled(关闭)
重启尝试就可以了