AIX下如何根据端口号查找相应的进程

1. $ netstat -Aan |grep 8080

    f1000e0002321bb8 tcp 0 0 *.8080 *.* LISTEN

2. $ rmsock f1000e0002321bb8 tcpcb

    The socket 0xf1000e0002321808 is being held by proccess 5767286 (java) 

    ps: 5767286即是进程号

3. $ ps -ef |grep 5767286

    当然,如何是要杀进程的话,可以直接kill -9 5767286

原文地址:https://www.cnblogs.com/ivictor/p/3808156.html