Linux根據端口號查看進程PID

轉:html

Linux根據端口號查看進程PID

一、命令lsof,以查找佔用端口80爲例,用法以下:nginx

[root@localhost nginx]# lsof -i:80 [root@localhost nginx]# 

  以上爲沒有進程佔用80端口,less

[root@localhost sbin]# lsof -i:80 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME nginx 8246 root 6u IPv4 64233 0t0 TCP *:http (LISTEN) nginx 8247 nobody 6u IPv4 64233 0t0 TCP *:http (LISTEN) [root@localhost sbin]# 

  以上爲進程ID爲8246和8247的nginx應用,佔用80端口。tcp

 

二、命令netstat,以查找佔用80端口爲例,用法以下:post

這樣也能夠:netstat -apn|grep 80 】url

[root@localhost sbin]# netstat -nlp|grep :80 tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 8246/nginx [root@localhost sbin]# 

 

三、命令ps,能夠查看已知進程PID的執行目錄的詳細信息spa

複製代碼
[root@localhost sbin]# ps -ef | grep 8246 root 8246 1 0 14:56 ? 00:00:00 nginx: master process ./nginx nobody 8247 8246 0 14:56 ? 00:00:00 nginx: worker process root 8461 2679 0 15:26 pts/1 00:00:00 grep 8246 [root@localhost sbin]# ps -x | grep 8246 Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.8/FAQ 8246 ? Ss 0:00 nginx: master process ./nginx 8463 pts/1 S+ 0:00 grep 8246 [root@localhost sbin]# 
複製代碼

 

talk less,do more!
分類: Linux
相關文章
相關標籤/搜索