mirror of
http://github.com/valkey-io/valkey
synced 2024-11-21 16:46:15 +00:00
d09a59c3b1
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>
45 lines
1.0 KiB
Smarty
Executable File
45 lines
1.0 KiB
Smarty
Executable File
|
|
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
|
|
;;
|
|
status)
|
|
PID=$(cat $PIDFILE)
|
|
if [ ! -x /proc/${PID} ]
|
|
then
|
|
echo 'Valkey is not running'
|
|
else
|
|
echo "Valkey is running ($PID)"
|
|
fi
|
|
;;
|
|
restart)
|
|
$0 stop
|
|
$0 start
|
|
;;
|
|
*)
|
|
echo "Please use start, stop, restart or status as first argument"
|
|
;;
|
|
esac
|