Centos7下查看并关闭selinux

Posted 程序员小默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7下查看并关闭selinux相关的知识,希望对你有一定的参考价值。

【1】查看selinux状态

sestatus;

getenforce

Centos7下查看并关闭selinux_重启


【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​​.

Centos7下查看并关闭selinux_重启_02


临时关闭

  • 服务器重启,不是那么随意的,可以使用命令临时关闭。
setenforce 1 设置SELinux 成为enforcing模式
setenforce 0 设置SELinux 成为permissive模式(使用该命令)


以上是关于Centos7下查看并关闭selinux的主要内容,如果未能解决你的问题,请参考以下文章

CentOS7下zabbix3.4安装与配置

Linux下防火墙和selinux的启动关闭和查看

Centos7 关闭SELINUX

CentOS7搭建SVN+http访问

CentOS 修改selinux状态

centos7永久关闭selinux