我想知道哪个用户正在运行特定的端口号。例如
netstat -an | grep ':6016'
哪个用户负责“6016”端口号。
答案1
使用
netstat -anp | grep ':6016'
它会给你连接到端口的进程的pid。然后使用
ps aux | grep <the pid from the previous command>
来获取进程运行时的用户名。
我想知道哪个用户正在运行特定的端口号。例如
netstat -an | grep ':6016'
哪个用户负责“6016”端口号。
使用
netstat -anp | grep ':6016'
它会给你连接到端口的进程的pid。然后使用
ps aux | grep <the pid from the previous command>
来获取进程运行时的用户名。