redisサーバ自動起動スクリプトのサンプルコード

サンプルコード:
#!/bin/bash
#
# redis – this script starts and stops the redis-server daemon
#
# chkconfig:   – 80 12
# description:  Redis is a persistent key-value database
# processname: redis-server
# config:      /etc/6379.conf
# pidfile:     /redis/redis6379.pid
PATH=/usr/local/bin:/sbin:/usr/bin:/bin

REDISPORT=6379
EX_EC=/usr/local/bin/redis-server
REDIS_CLI=/usr/local/bin/redis-cli

PIDFILE=/redis/redis6379.pid
CONF="/etc/6379.conf"

case “$1" in
start)
if [ -f $PIDFILE ]
then
echo “$PIDFILE exists, process is already running or crashed"
else
echo “Starting Redis server…"
$EX_EC $CONF
fi
if [ “$?"="0" ]
then
echo “Redis is running…"
fi
;;
stop)
if [ ! -f $PIDFILE ]
then
echo “$PIDFILE does not exist, process is not running"
else
PID=$(cat $PIDFILE)
echo “Stopping …"
$REDIS_CLI -p $REDISPORT SHUTDOWN
while [ -x ${PIDFILE} ]
do
echo “Waiting for Redis to shutdown …"
sleep 1
done
echo “Redis stopped"
fi
;;
restart|force-reload)
${0} stop
${0} start
;;
*)
echo “Usage: /etc/init.d/redis {start|stop|restart|force-reload}" >&2
exit 1
esac

 

#chmod 0777 /etc/init.d/redis
#chkconfig redis on

# vi /etc/rc.d/rc.local

追記
service redis start

Linux

Posted by arkgame