One small tip...

On Mon, Sep 24, 2001 at 02:48:42PM +1000, Jill Rowling wrote:
[...]
> Find the process ID for xinetd
>  ps -ef | grep xinetd
> 
> then kill -USR1 pid_of_xinetd
> eg kill -USR1 676

For services started by Red Hat's start up scripts, there is an easier
way than this. The file /var/run/xinetd.pid will contain the appropriate
process id. So

        kill -USR1 $(cat /var/run/xinetd.pid)

will work (and is nice in scripts, etc).

Malcolm

-- 
For every action there is an equal and opposite criticism.

-- 
SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug

Reply via email to