Netstat

如何檢查哪個使用者負責使用特定埠?

  • December 3, 2015

我想知道哪個使用者正在執行特定的埠號。例如

netstat -an | grep ':6016'

哪個使用者負責“6016”埠號。

使用 netstat -anp | grep ':6016' That 將為您提供連接到埠的程序的 pid。然後用於 ps aux | grep <the pid from the previous command> 獲取程序執行的使用者名。

引用自:https://unix.stackexchange.com/questions/247172