valkey/utils/valkey_init_script
Wen Hui d09a59c3b1
Rename redis_init_script file and its content (#357)
Rename the init script and a related `.tpl` file and rename variable
names inside (redis to valkey). Update variables in
`utils/install_server.sh`.

Fixes #354

Signed-off-by: hwware <wen.hui.ware@gmail.com>
2024-04-24 10:05:11 +02:00

51 lines
1.3 KiB
Bash
Executable File

#!/bin/sh
#
# Simple server init.d script conceived to work on Linux systems
# as it does use of the /proc filesystem.
### BEGIN INIT INFO
# Provides: valkey_6379
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Valkey data structure server
# Description: Valkey data structure server. See https://valkey.io
### END INIT INFO
VALKEYPORT=6379
EXEC=/usr/local/bin/valkey-server
CLIEXEC=/usr/local/bin/valkey-cli
PIDFILE=/var/run/valkey_${VALKEYPORT}.pid
CONF="/etc/valkey/${VALKEYPORT}.conf"
case "$1" in
start)
if [ -f $PIDFILE ]
then
echo "$PIDFILE exists, process is already running or crashed"
else
echo "Starting Valkey server..."
$EXEC $CONF
fi
;;
stop)
if [ ! -f $PIDFILE ]
then
echo "$PIDFILE does not exist, process is not running"
else
PID=$(cat $PIDFILE)
echo "Stopping ..."
$CLIEXEC -p $VALKEYPORT shutdown
while [ -x /proc/${PID} ]
do
echo "Waiting for Valkey to shutdown ..."
sleep 1
done
echo "Valkey stopped"
fi
;;
*)
echo "Please use start or stop as first argument"
;;
esac