On Mon, 2007-08-20 at 13:21 -0400, Stephen Harris wrote:
On Mon, Aug 20, 2007 at 10:05:54AM -0700, Craig White wrote:
I have been running as root and if you notice, I did have a 'p'
That you were running as root wasn't clear from your message (different people use different prompts). I knew you used a "p" which is why I said _rerun_ the command.
# netstat -tlpn |grep 46929 tcp 0 0 0.0.0.0:46929 0.0.0.0:* LISTEN -
and thus the process isn't displayed.
In this case it might then be an RPC process. So try "rpcinfo -p" eg on my machine (as root): % netstat -anp | grep LIST | head -1 tcp 0 0 0.0.0.0:32769 0.0.0.0:* LISTEN -
% rpcinfo -p | grep -w 32769 100021 1 tcp 32769 nlockmgr 100021 3 tcp 32769 nlockmgr 100021 4 tcp 32769 nlockmgr
---- indeed - that was it...nlockmgr
# rpcinfo -p|grep 46929 100021 1 tcp 46929 nlockmgr 100021 3 tcp 46929 nlockmgr 100021 4 tcp 46929 nlockmgr
Thanks