在系统中开启了防火墙和SELinux会导致一些应用不能正常通过,所以我们需求关闭,或者是通过防火墙过滤,本章直接关闭这两个服务

关闭SELinux

# 临时关闭SELinux
[root@localhost ~]# setenforce 0
#永久关闭SELinux,修改配置文件
[root@localhost ~]# vi /etc/selinux/config
SELINUX=disabled 修改为禁用

关闭防火墙

# 查看防火墙,如果看到“active(running)”表示此时防火墙已经开启
systemctl status firewalld.service
# 停止防火墙
systemctl stop firewalld.service
# 关闭防火墙
systemctl disable firewalld.service