CentOS7にSELinuxの無効設定、ファイアウォール停止メモ
1.SELinux状態確認
# getenforce
Enforcing
2.SELinux無効設定
# setenforce 0
# getenforce
Permissive
3.SELinux設定ファイル操作
# vi /etc/sysconfig/selinux
SELINUX=enforcing
↓
SELINUX=disabled
4.ファイアウォール停止
# systemctl stop firewalld
# systemctl disable firewalld