CentOS7.9にSELinuxの無効化を設定する
環境
# cat /etc/redhat-release
CentOS Linux release 7.9.2009 (Core)
1.現在の状況確認
# getenforce
Enforcing
2.設定ファイルを変更します
# vi /etc/selinux/config
7行目
修正前
SELINUX=enforcing
修正後
SELINUX=disabled
3.サーバーを再起動
# shutdown -r now
4.設定変更確認
# getenforce
Disabled