Answers:
netstat -lnp
将在每个侦听端口旁边列出pid和进程名称。这将在Linux下运行,但不适用于所有其他操作系统(例如AIX。)-t
如果仅需要TCP,则添加。
# netstat -lntp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:24800 0.0.0.0:* LISTEN 27899/synergys
tcp 0 0 0.0.0.0:8000 0.0.0.0:* LISTEN 3361/python
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 2264/mysqld
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 22964/apache2
tcp 0 0 192.168.99.1:53 0.0.0.0:* LISTEN 3389/named
tcp 0 0 192.168.88.1:53 0.0.0.0:* LISTEN 3389/named
等等
netstat -p
以上是我的投票。也看lsof
。
在AIX上,netstat和rmsock可用于确定进程绑定:
[root@aix] netstat -Ana|grep LISTEN|grep 80
f100070000280bb0 tcp4 0 0 *.37 *.* LISTEN
f1000700025de3b0 tcp 0 0 *.80 *.* LISTEN
f1000700002803b0 tcp4 0 0 *.111 *.* LISTEN
f1000700021b33b0 tcp4 0 0 127.0.0.1.32780 *.* LISTEN
# Port 80 maps to f1000700025de3b0 above, so we type:
[root@aix] rmsock f1000700025de3b0 tcpcb
The socket 0x25de008 is being held by process 499790 (java).
在Linux上可用的另一个工具是ss。在Fedora上的ss手册页中:
NAME
ss - another utility to investigate sockets
SYNOPSIS
ss [options] [ FILTER ]
DESCRIPTION
ss is used to dump socket statistics. It allows showing information
similar to netstat. It can display more TCP and state informations
than other tools.
下面的示例输出-最后一列显示了流程绑定:
[root@box] ss -ap
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 128 :::http :::* users:(("httpd",20891,4),("httpd",20894,4),("httpd",20895,4),("httpd",20896,4)
LISTEN 0 128 127.0.0.1:munin *:* users:(("munin-node",1278,5))
LISTEN 0 128 :::ssh :::* users:(("sshd",1175,4))
LISTEN 0 128 *:ssh *:* users:(("sshd",1175,3))
LISTEN 0 10 127.0.0.1:smtp *:* users:(("sendmail",1199,4))
LISTEN 0 128 127.0.0.1:x11-ssh-offset *:* users:(("sshd",25734,8))
LISTEN 0 128 ::1:x11-ssh-offset :::* users:(("sshd",25734,7))
曾经有一次我试图确定特定端口后面是什么进程(这次是8000)。我尝试了各种lsof和netstat,但随后还是尝试了一下,并尝试通过浏览器(即http:// hostname:8000 /)访问端口。看得出来,一个启动屏幕迎接了我,很明显该过程是什么(据记录是Splunk)。
还有一个想法:“ ps -e -o pid,args”(YMMV)有时可能在参数列表中显示端口号。Grep是你的朋友!
telnet hostname 8000
查看服务器是否打印横幅。但是,当服务器在没有外壳访问权限的计算机上运行,然后发现进程ID无关时,这最有用。