Centos7端口开放和查看,永久开放端口
1.CentOS查看端口占用:
lsof -i tcp:80
2、列出所有端口
netstat -ntlp
查看已经开放的端口
firewall-cmd --list-ports
如何永久开放某个端口,请看我的这篇文章。
https://www.cnblogs.com/music-liang/p/12881219.html
2.防火墙开启端口(永久)
参考地址:https://blog.csdn.net/zx110503/article/details/78787483
默认情况下centos的端口是不对外开放的。
对外开放mongod 的 27017 需要设置防火墙。
2.1、运行命令:
firewall-cmd --get-active-zones
2.2、执行如下命令命令:
firewall-cmd --zone=public --add-port=27017/tcp --permanent
2.3、重启防火墙,运行命令:
firewall-cmd --reload
2.4、查看端口号是否开启,运行命令:
firewall-cmd --query-port=27017/tcp