红联Linux门户
Linux帮助

linux根据端口号找出进程名

发布时间:2016-06-11 15:35:48来源:linux网站作者:带鱼兄

1.使用lsof找出pid

lsof -i:22 

linux根据端口号找出进程名


2.使用netstat找出pid

#找出非监听端口 
netstat -ntp | grep ":22" 

#找出监听端口 
netstat -ntpl | grep ":22" 

linux根据端口号找出进程名


3.使用ps找出进程名

ps -ef|grep $pid

linux根据端口号找出进程名


本文永久更新地址:http://www.linuxdiyf.com/linux/21439.html