linux下查看进程占用端口和端口占用进程命令

Linux下查看进程占用端口:
查看程序对应进程号:ps –ef|grep 进程名

REDHAT :查看进程号所占用的端口号:netstat –nltp|grep 进程号?xml:namespace>

ubuntu:查看进程占用端口号:netstat -anp|grep pid

Linux下查看端口号所使用的进程号:
使用lsof命令: lsof –i:端口号

[root@xcloud230 ~]# netstat -tlpanu|grep collectd
tcp 57327 0 172.18.1.230:58353 172.18.1.217:14242 ESTABLISHED 1320/collectd
udp 0 0 0.0.0.0:17631 0.0.0.0:* 1320/collectd

你可能感兴趣的:(linux下查看进程占用端口和端口占用进程命令)