系统相关
首页 > 系统相关> > 根据端口查询进程号

根据端口查询进程号

作者:互联网

一、linux根据端口查询进程、服务
1、lsof -i:22
2、netstat -nltp|grep 22

二、Windows根据端口查询进程
netstat -ano|find "LISTENING"|find "135"

三、AIX根据端口查询进程
netstat -Aan | grep 22
f1000e00005673b8 tcp ........
然后通过rmsock命令查看进程号
rmsock f1000e00005673b8 tcpcb

标签:rmsock,端口,netstat,查询,进程,find
来源: https://www.cnblogs.com/marit/p/16483810.html