Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Not sure what it represents exactly, but I do note the number in brackets corresponds to what's in the DEV column if you do an lsof -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

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.