On Tue, Aug 25, 2009 at 01:00:53AM -0700, Colin Brace wrote:
> Ok, here is what lsof tells me:
> 
> $ sudo lsof | grep perl
> perl5.8.9  4272     www    3u    IPv4 0xc33cf000        0t0     TCP
> gw:51295->94.102.51.57:afs3-fileserver (ESTABLISHED)
> 
> The last line would be appear to telling me something, but what?

The script is talking to 94.102.51.57 on port 7000.

Other useful things:

ps ajxwwww
will tell you the parent process of the script:  this looks like
it may be a (fast?)CGI script; if so then the parent would be the
web server.

It may also show the name of the script (but beware:  the script
can change that) which would be usefull to know.

> After 24 hour since rebooting, this perl instance is still crunching away... 

Is it the same instance of the script, or a new copy each time?
That is, does the PID change?  If so, that points to a CGI; if not it
points to a fastCGI - or something else.

Cheers,

-- 
:wq

_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Reply via email to