centos7开放及查看端口
Posted xiaowangbangzhu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7开放及查看端口相关的知识,希望对你有一定的参考价值。
centos7中的防火墙改成了firewall,使用iptables无作用,开放端口的方法如下:
firewall-cmd --zone=public --add-port=80/tcp --permanent
返回success为成功
命令含义:
--zone #作用域
--add-port=80/tcp #添加端口,格式为:端口/通讯协议
--permanent #永久生效
重启防火墙:
systemctl restart firewalld.service
关闭防火墙:
systemctl stop firewalld.service
查看监听(Listen)的端口
netstat -lntp
检查端口被哪个进程占用
netstat -lnp|grep 8080
以上是关于centos7开放及查看端口的主要内容,如果未能解决你的问题,请参考以下文章