centos7——关闭防火墙和SElinux

89284553 2020-04-10

防火墙的开启和关闭:

查看防火墙状态

systemctl status firewalld    #Active: inactive (dead) --表示防火墙已经关闭

临时关闭防火墙

systemctl stop firewalld

临时打开防火墙

systemctl start firewalld

永久防火墙关闭

systemctl disable firewalld

防火墙开机启动

systemctl enable firewalld

SELinux的开启和关闭

查看SELinux状态

getenforce        #permissive模式是临时关闭,enforcing模式是临时打开,disabled模式是永久关闭
/usr/sbin/sestatus -v     #如果SELinux status参数为enabled即为开启状态

临时关闭SELinux

setenforce 0

临时打开SELinux

setenforce 1

永久关闭SELinux

编辑/etc/selinux/config文件,将SELINUX的值设置为disabled。需要重启机器,下次开机SELinux就不会启动了。这时setenforce 1也打不开SELinux

在永久关闭的情况下,怎么打开SELinux

编辑/etc/selinux/config文件,将SELINUX的值设置为enabled。需要重启机器

相关推荐

老谢的自留地 / 0评论 2020-05-31
yshlovelx / 0评论 2020-04-18