Linux在安裝好以後一般SELinux都是出於默認開啓的狀態,開啓的狀況下會致使一些服務的安裝不成功。centos
在不須要的狀況下徹底能夠關閉掉,下面是在centos 7.0裏面如何查看,關閉selinux。ruby
[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
Linux在安裝好以後一般SELinux都是出於默認開啓的狀態,開啓的狀況下會致使一些服務的安裝不成功。centos
在不須要的狀況下徹底能夠關閉掉,下面是在centos 7.0裏面如何查看,關閉selinux。ruby
[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設置爲disabled。bash
[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