Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does "Can not obtain ownership information" in Netstat -ab mean?

(Windows 7 x86)

If I run netstat -ab, I get a list of active connections, along with the names of the applications which have opened the connections.

However, some connections (including the one opened by my app) are listed as:

Can not obtain ownership information

Why?

Thanks,

Darren.

like image 514
dbruning Avatar asked Oct 21 '10 07:10

dbruning


2 Answers

Run netstat -ano and look at the PID that it is under.

like image 134
Colin Bowern Avatar answered Sep 24 '22 06:09

Colin Bowern


If you add the '-o' option, you'll see the PID values, and likely it will be PID 4, which is the System PID. This means it is probably a Service. (Note that Windows 7 will report "PID 4", while Windows XP will report "System").

This link gives some ideas of what it might be: https://superuser.com/questions/43307/whys-is-system-process-listening-on-port-80?rq=1

like image 33
Mark Lakata Avatar answered Sep 23 '22 06:09

Mark Lakata