关闭防火墙
转载自:https://blog.csdn.net/shawCloud/article/details/90240712
在Centos7中查看当前系统的防火墙命令
- 查看当前防火墙状态
第一种方式
[root@localhost /]# firewall-cmd --state
running
第二种方式(如果防火墙处于开启状态,firewalld.service前面的点是高亮的,Active:active(开启),推荐此种方式)
[root@localhost ~]# systemctl status firewalld.service
● firewalld.service - firewalld - dynamic firewall daemon
Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
Active: inactive (dead)
Docs: man:firewalld(1)
关闭当前的防火墙(仅对本次开机有效,重启后防火墙会再次启用)
[root@localhost /]# systemctl stop firewalld.service
- 永久关闭防火墙(重启后防火墙依然关闭)
[root@localhost /]# systemctl disable firewalld.service
Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service.
Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
关闭SElinux
转载自:https://blog.csdn.net/zhoushengtao12/article/details/95346903
1、为什么要关闭selinux
初学者配置linux服务器时不成功,却没有头绪,那是因为在linux操作系统中默认开启了防火墙,SELinux也处于启动状态,一般状态为enforing。致使很多服务端口默认是关闭的。所以好多服务初学者明明配置文件正确,等验证时有时连ping也ping不通。建议初学者在未学到SELlinux与iptables之前,配置服务器把这两项都关掉。
2、查看selinux状态
#getenforce
enforcing为开启、disable为关闭:
3、临时关闭selinux
#setenforce 0
4、永久关闭selinux
#vi /etc/selinux/config
#SELINUX=enforcing改为SELINUX=disabled
重启生效
5、永久开启
与四相反