UNIX GURU UNIVERSE 
			         UNIX HOT TIP
Unix Tip 3517 - September 26, 2011
http://www.ugu.com/sui/ugu/show?tip.today
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
KEEP THOSE DAEMONS RUNNING
Here is a script that will keep daemons running
if the decide to die for some unforseen reason.
This tip generously supported by: ken@theglobeandmail.com
-------------------- cut here -----------------
#!/bin/csh
#
# NAME
#   keepitup.csh - Keep demons up and running
#
# SYNOPSIS
#   keepitup.csh
#
# DESCRIPTION
#   If any of the following processes are down, then start them up
#   again.   This script can be run every few minutes from a crontab.
#
# AUTHOR
#   Ken Stevens <kstevens@globeandmail.ca>
foreach daemon ( \
        /opt/GIS/apps/EventDispatcher/scripts/EventDispatcher.pl \
        /opt/GIS/apps/CatchFTP/scripts/ProcessFTP.pl \
        /opt/GIS/apps/NewsHound/scripts/NewsHound.pl \
        )
ps -e | fgrep `echo $daemon:t | cut -c1-8` > /dev/null
        if ( $status > 0 ) then
                echo Restarting $daemon
                date
                $daemon &
        endif
end
--------------------------------------------------------------------------
To Subscribe:    http://www.ugu.com/sui/ugu/show?tip.subscribe
To Unsubscribe:  http://www.ugu.com/sui/ugu/show?tip.unsubscribe
To Submit A Tip: http://www.ugu.com/sui/ugu/show?tip.today
==========================================================================
DISCLAIMER: All UNIX HOT TIPS ARE OWNED BY THE UNIX GURU UNIVERSE AND ARE
NOT TO BE SOLD, PRINTED OR USED WITHOUT THE WRITTEN CONSENT OF THE UNIX 
GURU UNIVERSE. ALL TIPS ARE "USE AT YOUR OWN RISK". UGU  ADVISES THAT 
ALL TIPS BE TESTED IN A NON-PRODUCTION DEVELOPMENT ENVIRONMENT FIRST.
Unix Guru Universe - www.ugu.com - tips@ugu.com - Copyright 1994-2001
==========================================================================
 
 
 Postingan
Postingan
 
 
Tidak ada komentar:
Posting Komentar