250x250
반응형
Notice
Recent Posts
Recent Comments
전산쟁이의 기억노트
RHEL8에서 selinux OFF하는방법 본문
728x90
반응형
SMALL
기존에는 /etc/selinux/config에서 SELINUX=disabled로 설정했는데 RHEL8에서 해당 파일로 변경시 부팅과정 중에 memory leak이 발생할 수 있어 다른 방법으로 변경하라고 합니다.
- 기존 절차
$> 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
# SELINUXTYPE= can take one of these three values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
- 변경절차 (커널 파라미터에서 selinux를 off하도록 설정
$> grubby --update-kernel ALL --args selinux=0 $> cat /etc/default/grub ... GRUB_CMDLINE_LINUX="resume=123 rhgb quiet selinux=0"
시스템 반영을 위해 재부팅 필요.
출처 - http://igoni.kr/books/linux/page/rhel8-selinux-off
728x90
반응형
LIST
'RHEL8기술정보' 카테고리의 다른 글
RHEL환경에서 ssh 접속시 locale warning 메시지 출력시 조치사항 (0) | 2022.08.06 |
---|---|
nmcli기반의 네트워크 설정 (0) | 2022.08.06 |
Centos8에서 nic 이름 변경 (0) | 2022.07.25 |
oraclelinux8에서 pacemaker 설치하기 (0) | 2022.07.23 |
Oraclelinux8 버전에서 특정 버전 커널로 부팅 하기 (0) | 2022.07.23 |
Comments