web-dev-qa-db-ja.com

lsofコマンドを使用できない場合、特定のpidのアクティブなUNIXドメインソケットを取得するにはどうすればよいですか?

Lsofを使用する権限がない場合、pidがすでにわかっているプロセスでlsofを取得するにはどうすればよいですか?ありがとう

知っている netstat -l -pコマンドはアクティブなUNIXドメインソケットを出力しますが、更新されていないようです?ソケットを閉じた後も、netstatコマンドの結果に表示されます。

3
Shuman

Linuxでは、/procファイルシステムを調べて/proc/<pid>/fdの下の特定のPIDを特定できます。すべてのファイル記述子(fd)は、プロセスごとにリストされています。

$ ls -l /proc/27634/fd/
total 0
lrwx------ 1 root root 64 Mar 17 20:09 0 -> /dev/null
lrwx------ 1 root root 64 Mar 17 20:09 1 -> /dev/null
lrwx------ 1 root root 64 Mar 17 20:10 10 -> /dev/ptmx
lrwx------ 1 root root 64 Mar 17 20:10 12 -> /dev/ptmx
lrwx------ 1 root root 64 Mar 17 20:10 13 -> /dev/ptmx
lrwx------ 1 root root 64 Mar 17 20:09 2 -> /dev/null
lr-x------ 1 root root 64 Mar 17 20:09 3 -> socket:[430396]
l-wx------ 1 root root 64 Mar 17 20:09 4 -> socket:[430437]
lrwx------ 1 root root 64 Mar 17 20:09 5 -> pipe:[430440]
l-wx------ 1 root root 64 Mar 17 20:10 6 -> pipe:[430440]
lrwx------ 1 root root 64 Mar 17 20:10 7 -> socket:[430443]
lrwx------ 1 root root 64 Mar 17 20:10 8 -> socket:[430444]
lrwx------ 1 root root 64 Mar 17 20:10 9 -> socket:[430446]

そこにsocket:[....]としてリストされているものはすべてソケットです。

2
slm