临时和永久关闭Selinux
Posted zuikeol
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了临时和永久关闭Selinux相关的知识,希望对你有一定的参考价值。
临时关闭:
[root@localhost ~]# getenforce
Enforcing
[root@localhost ~]# setenforce 0
[root@localhost ~]# getenforce
Permissive
永久关闭:
[root@localhost ~]# vim /etc/sysconfig/selinux
SELINUX=enforcing 改为 SELINUX=disabled
重启服务reboot
以上是关于临时和永久关闭Selinux的主要内容,如果未能解决你的问题,请参考以下文章
linux(centos8):禁用selinux(临时关闭/永久关闭)