我对以下输出感到困惑:

cd /proc/2045 ; ls -l fd
lrwx------ 1 root root 64 10月  8 19:04 66 -> socket:[294364529]
socket:[294364529]是什么意思?

我猜应该是由该线程打开的套接字,但是数字是什么意思?

如何找到与此对应的portUnix socket路径?

谢谢 !

最佳答案

根据您的示例,“2045”是进程的pid数,“294364529”是套接字的inode数。在Linux套接字中,使用常规文件操作,因此这就是它们具有inode编号的原因。

例:
假设我在系统套接字中具有inode号4654214。

Netstat:

netstat -alep | egrep -i "Inode|4654214"
Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode       PID/Program name
tcp        0      0 *:9999                  *:*                     LISTEN      root       4654214     10619/nc

Lsof:
lsof -i | grep "4654214"
nc        10619            root    3u  IPv4 4654214      0t0  TCP *:9999 (LISTEN)

更多原始信息(fot tcp):
 grep -i "4654214" /proc/net/tcp
   5: 00000000:270F 00000000:0000 0A 00000000:00000000 00:00000000 00000000     0        0 4654214 1 cc2c5f00 300 0 0 2 -1

通过这种方式,您可以获得有关套接字的有用信息。另外查看ss命令。

08-16 10:21