查詢制定埠號的程序對應的可執行檔案的詳細目錄

2021-06-21 16:20:05 字數 651 閱讀 1755

事件起因:

查詢制定埠號的程序對應的可執行檔案的詳細目錄。

解決方案:

1. 首先根據埠號8080查詢程序號:

# netstat -anp|grep 8080

tcp 0 0 0.0.0.0:8080 0.0.0.0:* listen 2047/nginx

可以知道程序號是2047。

2. 根據程序號2047查詢具體的執行命令:

# ps aux|grep 2047

root 2047 0.0 0.0 20192 680 ? ss 08:40 0:00 nginx: master process /usr/local/nginx/sbin/nginx

root 20528 0.0 0.0 103240 884 pts/3 s+ 14:21 0:00 grep 2047

即可得到可執行檔案的名稱及路徑:nginx: master process /usr/local/nginx/sbin/nginx

ref:linux-netstat

linux-ps

埠號對應的服務

埠21 ftp 檔案傳輸協議服務 埠22 ssh secure shell 埠23 telnet 遠端登入服務,是internet上普遍採用的登入和 程式 埠25 smtp mail transfer protocol 簡單郵件傳輸協議 埠53 dns domain name server 網域名稱...

常用協議對應的埠號

埠號的範圍是從1 65535。其中1 1024是被rfc 3232規定好了的,被稱作 眾所周知的埠 well known ports 從1025 65535的埠被稱為動態埠 dynamic ports dhcp 伺服器端的埠號是67 dhcp 客戶機端的埠號是68 pop3 pop3僅僅是接收協議,...

檢視TCP IP協議中埠號對應的程序

檢視tcp ip協議中埠號對應的程序 在task manager中,找到windows service 的程序號是17532,來自pid行。1.netstat ano find 17532 tcp 0.0.0.0 8087 0.0.0.0 0 listening 17532 程序17532啟動監聽埠...