1.安裝netstat工具
yum install net-tools
2.查看服務器所有被占用的端口
netstat -ant
3.驗證某個端口是否被占用
netstat -tunlp|grep 7002
4.查看所有監聽端口號
netstat -lntp
5.端口狀態與打開方法:
firewall-cmd --query-port=7002/tcp
添加7002端口:
firewall-cmd --add-port=7002/tcp --permanent
移除7002端口:
firewall-cmd --remove-port=7002/tcp --permanent
