CentOS 7.4 firewall 开启http/https 服务

firewall http 服务开启

firewall-cmd --query-service http               ##查看http服务是否支持,返回yes或者no
firewall-cmd --add-service=http                 ##临时开放http服务
firewall-cmd --add-service=http --permanent     ##永久开放http服务
firewall-cmd --reload                           ##重启防火墙生效

CentOS 7.4 firewall 开启http/https 服务_第1张图片

firewall https 服务开启
与上面的 http 类似,话不多说,直接上代码

firewall-cmd --add-service=https --permanent               
firewall-cmd --add-service=https --reload

CentOS 7.4 firewall 开启http/https 服务_第2张图片

你可能感兴趣的:(centos)