Created
March 6, 2015 05:50
-
-
Save fouvy/094adb0d775399647813 to your computer and use it in GitHub Desktop.
Redis init.d for centos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# redis Startup script for Redis Server | |
# | |
# chkconfig: - 90 10 | |
# description: Redis is an open source, advanced key-value store. | |
# | |
# processname: redis-server | |
# config: /etc/redis/redis.conf | |
# pidfile: /var/run/redis.pid | |
PATH=/usr/local/bin:/sbin:/usr/bin:/bin | |
REDISPORT=6379 | |
EXEC=/usr/local/bin/redis-server | |
REDIS_CLI=/usr/local/bin/redis-cli | |
PIDFILE=/var/run/redis.pid | |
CONF="/etc/redis/redis.conf" | |
case "$1" in | |
start) | |
if [ -f $PIDFILE ] | |
then | |
echo "$PIDFILE exists, process is already running or crashed" | |
else | |
echo "Starting Redis server..." | |
$EXEC $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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment