netstat命令查看端口是否占用

Windows:

       C:> netstat -ano

可以查出pid

 

AIX:

    #netstat –Aan | grep 8083

   # rmsock f100060000484b98 tcpcb

 

Linux:

   #netstat -anp | grep 8083

   # ps -ef | grep pid

相关推荐