본문 바로가기

리눅스

[CentOS] CentOS7 SELinux 끄기

반응형

SELinux를 끄면 보안적 이슈사항이 생길 수 있으나 테스트 서버나 개인 공부용 서버에서는 많은 귀찮음을 유발하기에 SELinux를 끄는 방법을 알아보자.


우선 아래 명령어를 통해 상태를 확인해 보면

$ sestatus

위와같이 SELinux status가 eabled 상태인것을 확인 할 수 있다.


끄는 방법은 아주 간단하다. SELinux 컨피그 파일에서 Disable만 적어주면 끝!


컨피그 파일은 아래 명령어로 들어갈 수 있다.

$ sudo 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  <- 주석처리

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


위와같이 파일을 수정해 주고 재실행 하면 SELinux가 꺼져있는 것을 확인할 수 있다.


끝.

반응형