I'm trying to find a file descriptor leak in a java server code running on linux. lsof gives hundreds of these:
java 963 tomcat6 208u sock 0,6 0t0 10199 can't identify protocol
Using the process id and the socket fd number I can get more info from the proc filesystem:
ls -la /proc/963/fd/208
lrwx------ 1 tomcat6 tomcat6 64 Oct 9 22:36 /proc/963/fd/208 -> socket:[10199]
The symlink says that this is a socket with inode 10199. Unfortunately I can't locate this inode in /proc/net/tcp or anywhere under /proc/net as suggested in the second answer here: http://unix.stackexchange.com/questions/10050/proc-pid-fd-x-link-number There are no connections listed in netstat output either which are related to these sockets.
I'm stuck here. Any hints on what else to look for?
DEVcolumn if you do anlsof -p <pid>, at least if you have sufficient permissions or are examining your own processes. At least it does on my system... – twalberg Oct 10 '12 at 21:54