Netstat
如何檢查哪個使用者負責使用特定埠?
我想知道哪個使用者正在執行特定的埠號。例如
netstat -an | grep ':6016'
哪個使用者負責“6016”埠號。
使用
netstat -anp | grep ':6016'
That 將為您提供連接到埠的程序的 pid。然後用於ps aux | grep <the pid from the previous command>
獲取程序執行的使用者名。