centos7开启80端口及其他端口
首先centos7的防火墙由iptables改为了firewalld
1. 执行命令:firewall-cmd --zone=public --add-port=80/tcp --permanent
命令含义:
--zone #作用域
--add-port=80/tcp #添加端口 格式为:端口/协议
--parmanent #永久生效 没有此参数重启后失效
2. 重启防火墙:systemctl restart firewalld
如果要开启其他端口,就将80换成其他的端口即可,比如3306