RHEL9 SELINUX の必要な状態の確認方法
環境
Red Hat Enterprise Linux release 9.2 (Plow)
操作方法
1.現在有効な SELinux モードを表示します
$ getenforce
2.SELinux を一時的に設定します。
Enforcing モードに設定する場合
# setenforce Enforcing
Permissive モードに設定する場合:
# setenforce Permissive
3.再起動後も SELinux モードを保持するように設定するには、/etc/selinux/config 設定ファイル
の SELINUX 変数を変更します。
例SELinux を Enforcing モードに切り替えるには、以下のように設定します。
# 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=enforcin