disabled모드를 사용하고 있는 경우에 동작모드를 변경하고자 한다면 setenforce 명령을 사용할 수 없어 재부팅을 수행해야 한다.
setenforce 명령으로 변경한 동작모드는 재부팅을 수행하면 초기화된다.
Config 수정을 통해 변경하는 방법
SELinux의 Config 파일 경로는 아래와 같다.
/etc/sysconfig/selinux
[root@localhost ~]# vi /etc/sysconfig/selinux
# 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 three values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted