防火墙的开启和关闭:
查看防火墙状态
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。需要重启机器
原文地址:https://www.cnblogs.com/glmq/p/12670528.html
时间: 2024-10-13 22:06:52