centos7——关闭防火墙和SElinux
Posted Ching_Fire
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7——关闭防火墙和SElinux相关的知识,希望对你有一定的参考价值。
防火墙的开启和关闭:
查看防火墙状态
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。需要重启机器
以上是关于centos7——关闭防火墙和SElinux的主要内容,如果未能解决你的问题,请参考以下文章