linux关闭防火墙

      在外部访问CentOS中部署应用时,需要关闭防火墙。

1、Centos7默认安装了firewalld,如果没有安装的话,可以使用 yum install firewalld firewalld-config进行安装。

2、关闭防火墙命令:systemctl stop firewalld.service

3、开启防火墙:systemctl start firewalld.service

4、关闭开机自启动:systemctl disable firewalld.service

5、开启开机启动:systemctl enable firewalld.service