计算机技术

Centos 7如何临时和永久关闭selinux

Centos 7如何临时和永久关闭selinux

工具/原料

  • Centos7 虚拟机

查看selinux状态和临时关闭selinux

  1. 1

    运行命令 getenforce 获取当前selinux状态

    Enforcing为开启

    Centos 7如何临时和永久关闭selinux
  2. 2

    运行命令 sudo setenforce 0

    运行命令 getenforce

    状态变为 Permissive

    此命令临时关闭 selinux  重启失效

    Centos 7如何临时和永久关闭selinux
    END

永久关闭selinux方法1

  1. 1

    运行命令

    sudo vim /etc/sysconfig/selinux

    Centos 7如何临时和永久关闭selinux
  2. 2

    找到行

    SELINUX=enforcing

    Centos 7如何临时和永久关闭selinux
  3. 3

    替换为

    SELINUX=disabled

    保存退出

    reboot

    Centos 7如何临时和永久关闭selinux
  4. 4

    重启后 运行命令 sestatus

    SELinux status :      disabled

    永久关闭selinux成功

    Centos 7如何临时和永久关闭selinux
    END

永久关闭selinux方法2

  1. 运行命令

    sudo sed -i ‘s/SELINUX=enforcing/SELINUX=disabled/’ /etc/selinux/config

    将 /etc/selinux/config 文件中

    SELINUX=enforcing

    替换为

    SELINUX=disabled

    运行命令

    sudo grep SELINUX=disabled /etc/selinux/config

    显示

    SELINUX=disabled

    确认替换修改成功

    reboot

    Centos 7如何临时和永久关闭selinux
  2. 重启后 运行命令 sestatus

    SELinux status :      disabled

    永久关闭selinux成功

     

    Enjoy it !!!

    Centos 7如何临时和永久关闭selinux

Related Articles

发表回复

Check Also
Close
Back to top button