首页 > 系统相关 >RedHat7 关闭防火墙及SElinux

RedHat7 关闭防火墙及SElinux

时间:2022-08-19 10:11:09浏览次数:99  
标签:SElinux 防火墙 RedHat7 systemctl 关闭 SELinux policy

转载:RedHat 7 关闭防火墙及SElinux

RedHat 7.x 默认不再用iptables管理防火墙,相关命令如下:

一、关闭防火墙
1. 查看防火墙状态
systemctl status firewalld

2. 实时关闭(重启恢复)
systemctl stop firewalld

3. 查看防火墙服务是否开机启动
systemctl is-enabled firewalld

4. 永久关闭
systemctl disable firewalld


二、关闭SELinux
1. 查看当前SELinux状态
getenforce

2. 实时关闭(重启恢复)
setenforce 0

3. 永久关闭
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 instead of enforcing.
#     disabled - No SELinux policy is loaded.
SELINUX=permissive    #修改为disabled
# SELINUXTYPE= can take one of three two values:
#     targeted - Targeted processes are protected,
#     minimum - Modification of targeted policy. Only selected processes are protected.
#     mls - Multi Level Security protection.
SELINUXTYPE=targeted

 

标签:SElinux,防火墙,RedHat7,systemctl,关闭,SELinux,policy
From: https://www.cnblogs.com/scandit/p/16601064.html

相关文章

  • Linux防火墙操作firewall、iptable
    iptables防火墙命令操作#查看防火墙状态serviceiptablesstatus#停止防火墙serviceiptablesstop#启动防火墙serviceiptablesstart#重启防火墙serviceipt......
  • Nginx_安装配置后,浏览器不能访问配置的站点ip:防火墙
    一、检查nginx安装成功[root@localhostsoftRyc]#/usr/local/webserver/nginx/sbin/nginx-vnginxversion:nginx/1.21.2 二、配置检查成功[root@localhostconf]#......
  • Linux centos7查看防火墙状态及配置命令
    查看防火墙状态systemctlstatusfirewalld锁定防火墙systemctlmaskfirewalld.service解锁防火墙systemctlunmaskfirewalld.service开启防火墙s......
  • 【鸟哥 Linux 16】进程管理与SELinux初探
    【鸟哥Linux16】进程管理与SELinux初探一、相关概念梳理程序:一些代码段的静态集合进程:程序中静态代码段的一次动态执行子进程:在某一个进程中创建的新作业,从该......
  • centos系统防火墙
    配置防火墙开放端口号。CentOS7默认的防火墙是firewall:查看防火墙状态:firewall-cmd--state查看开放的端口:firewall-cmd--list-portsfirewall-cmd--list-all单独......
  • 不同linux 的防火墙
    关于linux系统防火墙:centos5、centos6、redhat6系统自带的是iptables防火墙。centos7、redhat7自带firewall防火墙。ubuntu系统使用的是ufw防火墙。防火墙导致服务不......
  • 解决WINDOWS防火墙开启后Ping不通
    WINDOWS系统由于安全考虑,当开启防火墙时,默认不允许外主机对其进行ping功能,即别的电脑ping不通本机。别的主机ping不通本机是因为本机的防火墙关闭了ICMP回显功能,只要把这回......
  • centos7防火墙基本操作
    开启、关闭、查看防火墙状态systemctl方式systemctlstatusfirewalld  #查看状态(防火墙为开启状态active(running),防火墙为关闭状态inactive(dead))systemctl......
  • Centos7 怎么永久关闭防火墙
    1、连接到centos主机,然后输入命令“systemctlstatusfirewalld.service”并按下回车键。 2、然后在下方可以查看得到“active(running)”,此时说明防火墙已经打开了。......
  • 【Linux】SELinux 临时、永久关闭
    目录前言首先,查看selinux状态第一种:临时关闭、开启SELinux第二种:永久关闭SELinux前言SELinux或增强安全性的Linux是提供访问控制安全策略的机制或安全模块。简而言之,它......