AIX下如何查看占用端口的进程

应用程序有时会因为要使用的端口被其他程序使用,而无法正常启动,这时我们需要查看正在使用此端口的进程信息.
下面介绍了两个方法:

1. lsof方法:
> 参考文档: http://www-900.ibm.com/cn/support/viewdoc/detail?DocId=1811994C16000
> 下载lsof: ftp://ftp.software.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc/lsof (下载对相应版本的)
> # lsof -i | grep
-> 从结果中可以得到PID -> # ps -ef | grep PID -> 确定进程

2. netstat/rmsock方法:
> 以端口25举例:
(1) # netstat -Aan | grep 25
获得25号端口的PCB(protocol control block),且查看协议为tcp. (输出信息中第一列即是PCB)
例如:
# netstat -Aan |grep 25
f100070000d373b0 tcp4 0 0 *.25 *.* LISTEN
f100070000d25600 udp 0 0 *.* *.*
f100070000d25400 udp 0 0 *.* *.*
f100070000d25000 udp 0 0 *.* *.*
f100070000d25c00 udp 0 0 127.255.255.255.12 *.*
f100070000d2d200 udp 0 0 10.10.10.255.123 *.*
f100070000d25a00 udp4 0 0 *.514 *.*
f100070000d25200 udp4 0 0 *.517 *.*

(2) 如果是tcp连接,那么# rmsock tcpcb
如果是udp连接,那么# rmsock inpcb

# rmsock f100070000d373b0 tcpcb
The socket 0xd37008 is being held by proccess 213096 (sendmail).
结果显示25号端口正在被sendmail进程使用,PID为213096.

 

 

备注:

1.lsof不是自带命令,需要安装

2.rmsock需要用root权限才能执行

你可能感兴趣的:(unix)