临时和永久关闭Selinux

临时关闭:

[[email protected] ~]# getenforce
Enforcing

[[email protected] ~]# setenforce 0
[[email protected] ~]# getenforce
Permissive

永久关闭:

[[email protected] ~]# vim /etc/sysconfig/selinux

SELINUX=enforcing 改为 SELINUX=disabled

重启服务reboot

原文地址:https://www.cnblogs.com/zuikeol/p/11506355.html

时间: 2024-10-23 11:49:58

临时和永久关闭Selinux的相关文章

rhel7的基本操作(查看IP配置,关闭防火墙,临时或永久关闭selinux,常用命令操作)

* rhel7的基本操作* 1.查看IP配置[[email protected] ~]# ls /etc/sysconfig/network-scripts/ifcfg-enp0s25 /etc/sysconfig/network-scripts/ifcfg-enp0s25查看DNS配置[[email protected] ~]# cat /etc/resolv.conf Generated by NetworkManager nameserver 114.114.114.114查看IP和主机绑

centos 7 临时和永久关闭Selinux

1. 临时和永久关闭Selinux [[email protected] ~]# getenforceEnforcing [[email protected] ~]# setenforce 0[[email protected] ~]# getenforcePermissive 永久关闭: [[email protected] ~]# vim /etc/sysconfig/selinux SELINUX=enforcing 改为 SELINUX=disabled 重启服务reboot 原文地址:

永久关闭selinux

修改配置文件,永久关闭selinux. vim /etc/selinux/config # This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: #       enforcing - SELinux security policy is enforced. #       permissive - SELinux prints warnings

linux永久关闭SELinux*

linux永久关闭SELinux** #修改配置文件 vim /etc/selinux/config SELINUX=enforcing #修改为 SELINUX=disabled 修改后保存,重启 # 查看SELinux的状态 getenforce 原文地址:https://www.cnblogs.com/zhanghongke/p/10454525.html

永久关闭selinux | 防火墙

关闭SELinux的两种方法 1 永久方法 – 需要重启服务器 修改/etc/selinux/config文件中设置SELINUX=disabled ,然后重启服务器. 2 临时方法 – 设置系统参数 使用命令setenforce 0 附:setenforce 1 设置SELinux 成为enforcing模式setenforce 0 设置SELinux 成为permissive模式 谢谢! Centos7 关闭防火墙 CentOS 7.0默认使用的是firewall作为防火墙,使用iptabl

关闭SELinux的方法

临时关闭SELinux的方法: 如果不想重启系统,使用命令:setenforce 0 注: setenforce 1 设置SELinux 成为enforcing模式 setenforce 0 设置SELinux 成为permissive模式 可以用getenforce查看 永久关闭SELinux的方法: vi /etc/selinux/config(也有人说是/etc/sysconfig/selinux文件,其实两个之间是链接关系,随便改其中一个,另一个也改了) SELINUX=disable

如何开启或关闭SELinux

查看selinux [[email protected] ~]# getenforce Disabled [[email protected] ~]# /usr/sbin/sestatus -v SELinux status:                 disabled 临时关闭selinux [[email protected] ~]# setenforce 0 setenforce: SELinux is disabled 永久关闭selinux的两种方式 [[email protec

网络相关概念 ,修改IP ,防火墙与端口-关闭Selinux

en表示以太网 , 就是局域网 O:主板板载网 P: 独立网卡 S: 热插拔网卡 临时修改IP    ifconfig  网卡名称(ens33)  IP(192.168.1.110) systemctl restart network //重启网卡服务 ifconfig  网卡名称(ens33)  del IP(192.168.1.110) //临时删除 永久修改IP systemctl status NetworkManager    #网卡状态      active(running)   

CentOS 7.X 关闭SELinux

1.查看 [root@dev-server ~]# getenforce Disabled [root@dev-server ~]# /usr/sbin/sestatus -v SELinux status: disabled 2.临时关闭 ##设置SELinux 成为permissive模式 ##setenforce 1 设置SELinux 成为enforcing模式 setenforce 0 3.永久关闭 vi /etc/selinux/config 将SELINUX=enforcing改为