CentOS 7.X 關閉SELinux

一、查看

[root@dev-server ~]# getenforce Disabled [root@dev-server ~]# /usr/sbin/sestatus -v SELinux status: disabled

二、臨時關閉

##設置SELinux 成爲permissive模式 ##setenforce 1 設置SELinux 成爲enforcing模式 setenforce 0

三、永久關閉

vi /etc/selinux/config

將SELINUX=enforcing改成SELINUX=disabled
設置後須要重啓才能生效linux

 

centos 7.0 查看selinux狀態|關閉|開啓

Linux在安裝好以後一般SELinux都是出於默認開啓的狀態,開啓的狀況下會致使一些服務的安裝不成功。centos

在不須要的狀況下徹底能夠關閉掉,下面是在centos 7.0裏面如何查看,關閉selinux。ruby

查看selinux狀態

 
[root@localhost ~] # sestatus  
SELinux status:                 enabled  
SELinuxfs  mount :                 /sys/fs/selinux  
SELinux root directory:          /etc/selinux  
Loaded policy name:             targeted  
Current mode:                   enforcing  
Mode from config  file :          enforcing  
Policy MLS status:              enabled  
Policy deny_unknown status:     allowed  
Max kernel policy version:      28

臨時關閉

 
[root@localhost ~] # setenforce 0

永久關閉

能夠修改配置文件/etc/selinux/config,將其中SELINUX設置爲disabledbash

 
[root@localhost ~] # cat /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  
SELINUX=disabled  
# SELINUXTYPE= can take one of three two values:  
#     targeted - Targeted processes are protected,  
#     minimum - Modification of targeted policy. Only selected processes are protected.   
#     mls - Multi Level Security protection.  
SELINUXTYPE=targeted
 
[root@rdo ~] # sestatus  
SELinux status:                 disabled
相關文章
相關標籤/搜索