Centos关闭selinux 电脑版发表于:2021/3/13 16:59 ```bash # 查看selinux是否开启 (Enforcing表示开启) getenforce # 临时关闭selinux setenforce 0 # 永久关闭selinux vim /etc/selinux/config # 将SELINUX=enforcing改为SELINUX=disabled # 设置后需要重启才能生效 ```