注意:
和以前的版本不同centos7中默认使用的是firewall作为防火墙,所以之前的命令是不会生效的,如下:
从centos7开始使用systemctl来管理服务和程序,包括了service和chkconfig,
查看防火墙状态:
firewall-cmd --state
关闭防火墙:
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
和防火墙相关的命令
启动一个服务:systemctl start firewalld.service
关闭一个服务:systemctl stop firewalld.service
重启一个服务:systemctl restart firewalld.service
显示一个服务的状态:systemctl status firewalld.service
在开机时启用一个服务:systemctl enable firewalld.service
在开机时禁用一个服务:systemctl disable firewalld.service
查看服务是否开机启动:systemctl is-enabled firewalld.service
查看已启动的服务列表:systemctl list-unit-files|grep enabled