-
selinux 설정 해제하기프로그래밍/linux 2017. 1. 18. 12:52
selinux 설정 해제하기
selinux 란?
리눅스에 보안을 책임지는 프로그램이다.
selinux가 활성화 되어 있어 있으면 접근 권한이 설정이 안되어 있다는 오류 메세지를 받을 것이다.
selinux의 설정을 해제해 주면된다.
방법
1. vi 를 통해 "/etc/selinux/config" 에 접속한다.
2. selinux 를 화면과 같이 disabled 하면 된다.
[root@ns1 log]# vi /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 - SELinux is fully disabled.
SELINUX=disabled
# SELINUXTYPE= type of policy in use. Possible values are:
# targeted - Only targeted network daemons are protected.
# strict - Full SELinux protection.
SELINUXTYPE=targeted
시스템 재부팅
reboot
'프로그래밍 > linux' 카테고리의 다른 글
Apache FIN_WAIT2 TIME_WAIT 해결 (0) 2018.12.28 아파치 Headers Server OS 숨기기 (0) 2017.07.17 YumRepo Error: All mirror URLs are not using ftp, http[s] or file (0) 2017.06.07 [vsftpd] 553 Could not create file (0) 2017.01.13 아파치2.2.x 웹서버 (Apache HTTP Server) 동시 접속자 수 늘리기 (0) 2016.07.22