Jurgen Haan
> I've got some network service that spawns agents upon client
> connections. But I'm wondering if those things get cleaned up again.
If it's your code, make it clean up after the protocol ends, or the
sockets are closed. If it's someone else's code, maybe telling us what
it is might help. Some common network services hang around in case
more connections come in. (These are often UDP based servers.) Others
exit as soon as their share of the work has been completed (usually TCP
based servers.)
> Does anybody know how I can determine/see how long a process exists on a
> server?
The STIME field from "ps -f" ("ps -ef") shows you the time (date)
a process was started.
Chris