sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config 关闭后需要重启系统 reboot 查看SELinux的状态 getenforce 编辑配置文件/etc/selinux/config,把 SELINUX= 更改为 SELINUX=disabled ,然后重启系统,SELinux 就被禁用了 临时关闭SELinux 临时关闭SELinux就是enforcing 和 permissive 两种模式之...
2、永久关闭selinux sed-i's/SELINUX=enforcing/SELINUX=disabled/g'/etc/selinux/config cat/etc/selinux/config 查看配置 # Thisfilecontrols the state of SELinux on the system. # SELINUX=can take one of these three values: # enforcing-SELinux security policy is enforced. # permissive-SELinux...
第二种(永久):sed -i "s/^SELINUX\=enforcing/SELINUX\=disabled/g" /etc/selinux/config (把enforcing改成disabled)
SELINUX=disabled 命令修改: sed -i ‘s/SELINUX=enforcing/SELINUX=disabled/’ /etc/selinux/config 重启 reboot 查看状态 sestatus
解决方法如下: 1、准备工具 (1)Centos服务器 (2)电脑一台 2、开始可以用命令来查看selinux的状态getenforce,这个命令可以查看到selinux的状态,当前可以看到是关闭状态的 3、还有一个命令也可以查看出selinux的状态。sestatus -v 4、还有......
sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config 2.2:临时性关闭(立即生效,但是重启服务器后失效)setenforce 0 #设置selinux为permissive模式(即关闭)setenforce 1 #设置selinux为enforcing模式(即开启)这样就关闭SELinux了,当遇到问题时可以考虑关闭SELinux再进行安装 ...
[root@localhost /]# /usr/sbin/sestatus -v SELinux status: enabled ⼆、关闭SELinux:1、临时关闭(重启机器后失效):#setenforce 0设置为permissive模式;setenforce 1 设置为enforcing模式;setenforce 0 2、永久关闭(需要重启机器):sed -i s#SELINUX=enforcing#SELINUX=disabled# /etc/selinux/confi...
1、查看selinux状态 查看selinux的详细状态,如果为enable则表示为开启 /usr/sbin/sestatus -v 查看selinux的模式 getenforce 开启模式显示结果:Enforcing 关闭模式显示结果:Permissive 2、关闭selinux 永久性关闭(这样需要重启服务器后生效) sed -i ‘s/SELINUX=enforcing/SELINUX=disabled/’ /etc/selinux/config ...
2.sed修改,看看结果,不加-i This file controls the state of SELinux on the system. SELINUX= can take one of these three values: enforcing - selinux 已经启动 已经开启 permissive selinux 临时停用 会显示警告 disabled - selinux 彻底关闭 不再运行 ...
ansible all -i inventory/env-inner-prod-on-prem/inventory.ini -m shell -a "sed -i "s/SELINUX=enforcing/SELINUX=disabled/g" /etc/selinux/config" ansible all -i inventory/env-inner-prod-on-prem/inventory.ini -m shell -a "cat /etc/selinux/config| grep disabled" ...