- Modifié
Bonjour,
Je suis sous Fedora 6, et après avoir mis en place mon serveur apache, j'ai essayé par le biais de crontab de mettre en place un script permettant de redémarrer le service httpd en cas d'arret de celui ci. Pour cela j'ai édité crontab par la commande : crontab -e puis j'ai inserer :
0.01 * * * * /var/spool/cron/apache.watchdog
pour effectuer une verification chaque minute.
Mon script apache.watchdog :
#!/bin/sh
# this script is a watchdog to see whether the server is online
# It tries to restart the server, and if it's
# down it sends an email alert to admin
# admin's email
EMAIL=mon@mail.com
# the path to your PID file
PIDFILE=/var/run/httpd.pid
# the path to your httpd binary, including options if necessary
HTTPD=/usr/local/sbin/httpd_perl/httpd_perl
# check for pidfile
if [ -f $PIDFILE ] ; then
PID=`cat $PIDFILE`
if kill -0 $PID; then
STATUS="httpd (pid $PID) running"
RUNNING=1
else
STATUS="httpd (pid $PID?) not running"
RUNNING=0
fi
else
STATUS="httpd (no pid file) not running"
RUNNING=0
fi
if [ $RUNNING -eq 0 ]; then
echo "$0 $ARG: httpd not running, trying to start"
if $HTTPD ; then
echo "$0 $ARG: httpd started"
mail $EMAIL -s "$0 $ARG: httpd started" > /dev/null 2>&1
else
echo "$0 $ARG: httpd could not be started"
mail $EMAIL -s \
"$0 $ARG: httpd could not be started" > /dev/null 2>&1
fi
fi
Cependant le service ne redemarre pas et je ne trouve pas le chemin de mon httpd_perl...
Quelqu'un pourrait il m'aider s'il vous plait ?
Je suis sous Fedora 6, et après avoir mis en place mon serveur apache, j'ai essayé par le biais de crontab de mettre en place un script permettant de redémarrer le service httpd en cas d'arret de celui ci. Pour cela j'ai édité crontab par la commande : crontab -e puis j'ai inserer :
0.01 * * * * /var/spool/cron/apache.watchdog
pour effectuer une verification chaque minute.
Mon script apache.watchdog :
#!/bin/sh
# this script is a watchdog to see whether the server is online
# It tries to restart the server, and if it's
# down it sends an email alert to admin
# admin's email
EMAIL=mon@mail.com
# the path to your PID file
PIDFILE=/var/run/httpd.pid
# the path to your httpd binary, including options if necessary
HTTPD=/usr/local/sbin/httpd_perl/httpd_perl
# check for pidfile
if [ -f $PIDFILE ] ; then
PID=`cat $PIDFILE`
if kill -0 $PID; then
STATUS="httpd (pid $PID) running"
RUNNING=1
else
STATUS="httpd (pid $PID?) not running"
RUNNING=0
fi
else
STATUS="httpd (no pid file) not running"
RUNNING=0
fi
if [ $RUNNING -eq 0 ]; then
echo "$0 $ARG: httpd not running, trying to start"
if $HTTPD ; then
echo "$0 $ARG: httpd started"
mail $EMAIL -s "$0 $ARG: httpd started" > /dev/null 2>&1
else
echo "$0 $ARG: httpd could not be started"
mail $EMAIL -s \
"$0 $ARG: httpd could not be started" > /dev/null 2>&1
fi
fi
Cependant le service ne redemarre pas et je ne trouve pas le chemin de mon httpd_perl...
Quelqu'un pourrait il m'aider s'il vous plait ?