Centos7怎么开启端口? CentOS7默认没有使用iptables,所以通过编辑iptables的配置文件来开启80端口是不可以的, CentOS7采用的是firewalld 防火墙,如果没有安装的话,可以使用yum install firewalld firewalld-config进行安装。 如要查询是否开启80端口,显示no,表示没有开启端口:
[root@VM_0_16_centos ~]# firewall-cmd --query-port=80/tcp
no
显然80端口没有开启 下面我们开启80端口,显示success,表示已成功开启端口:
[root@VM_0_16_centos ~]# firewall-cmd --add-port=80/tcp
success