Centos7下查看并关闭selinux
Posted 程序员小默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7下查看并关闭selinux相关的知识,希望对你有一定的参考价值。
【1】查看selinux状态
sestatus;
getenforce
【2】永久关闭selinux
vim /etc/selinux/config
- 其配置文件如下:
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=enforcing
# SELINUXTYPE= can take one of these two values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
设置SELINUX=disabled
然后重启reboot
.
临时关闭
- 服务器重启,不是那么随意的,可以使用命令临时关闭。
setenforce 1 设置SELinux 成为enforcing模式
setenforce 0 设置SELinux 成为permissive模式(使用该命令)
以上是关于Centos7下查看并关闭selinux的主要内容,如果未能解决你的问题,请参考以下文章