linux下查看所有监听端口

1.检查所有监听端口

#netstat -tln | awk ‘NR>2{sub(“.*:”,“”,$4);print $4}’

2.检查所有监听端口并排序去重

#netstat -tln | awk ‘NR>2{sub(“.*:”,“”,$4);print $4}’ | sort | uniq

lsof -i:端口号 用于查看某一端口的占用情况,
比如查看9501端口使用情况,lsof -i:9501

netstat -tunlp |grep 端口号,用于查看指定的端口号的进程情况
如查看9501端口的情况,netstat -tunlp |grep 9501

1、通过"netstat -anp" 来查看哪些端口被打开。

关掉对应的应用程序,则端口就自然关闭了,如:“kill -9 PID” (PID:进程号)

linux下查看监听端口对应的进程
1.通过lsof命令查看PID
ipv4
[root@test proc]# lsof -Pnl +M -i4
lsof -Pnl +M -i6

2.通过ps命令查看进程情况
[root@test proc]# ps -ef|grep 12886

2.使用ps查看进程情况
[root@test 12886]# ps -ef|grep 12886

一、防火墙的相关命令
systemctl start firewalld
systemctl stop firewalld
systemctl enble firewalld
firewall-cmd --add-port=3306/tcp --permanent
firewall-cmd --reload
firewall-cmd --zone=public --list-ports

二、查看端口的相关命令
netstat -ntlp
netstat -ntlp | grep 3306
kill -9 10086

猜你喜欢

转载自blog.csdn.net/baiyifei2016/article/details/128144578