blob: 0d4b1b03122f434f779102c93d5b8e3b1afe1756 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#!/bin/sh
#
# Redis startup script for Slackware Linux
PORT=6379
SERV=/usr/bin/redis-server
CLI=/usr/bin/redis-cli
PIDFILE=/var/run/redis_${PORT}.pid
CONF=/etc/redis/redis.conf
redis_start() {
if [ ! -r $CONF ]; then
echo "$CONF does not appear to exist. Abort."
exit 1
fi
if [ -s $PIDFILE ]; then
echo "Redis appears to be already running?"
exit 1
fi
echo "Starting Redis server..."
$SERV $CONF
}
redis_stop() {
if [ ! -s $PIDFILE ]; then
echo "$PIDFILE does not exist or is empty."
exit 1
fi
PID=$(cat $PIDFILE)
echo -n "Stopping Redis server..."
$CLI -p $PORT shutdown
while [ -d /proc/$PID ]; do
sleep 1
echo -n "."
done
echo " done"
}
redis_restart() {
redis_stop
sleep 3
redis_start
}
case "$1" in
start)
redis_start
;;
stop)
redis_stop
;;
restart)
redis_restart
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
|