116 lines
3.6 KiB
Bash
Executable File
116 lines
3.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright (c) 2006-2015, Salvatore Sanfilippo
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
#
|
|
# * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
# * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
|
|
# disclaimer in the documentation and/or other materials provided with the distribution.
|
|
# * Neither the name of Redis nor the names of its contributors may be used to endorse or promote products derived
|
|
# from this software without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS
|
|
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
|
|
# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
# Settings
|
|
PORT=30000
|
|
TIMEOUT=2000
|
|
NODES=6
|
|
REPLICAS=1
|
|
|
|
# You may want to put the above config parameters into config.sh in order to
|
|
# override the defaults without modifying this script.
|
|
|
|
if [ -a config.sh ]
|
|
then
|
|
source "config.sh"
|
|
fi
|
|
|
|
# Computed vars
|
|
ENDPORT=$((PORT+NODES))
|
|
|
|
if [ "$1" == "start" ]
|
|
then
|
|
while [ $((PORT < ENDPORT)) != "0" ]; do
|
|
PORT=$((PORT+1))
|
|
echo "Starting $PORT"
|
|
redis-server --port $PORT --cluster-enabled yes --cluster-config-file nodes-${PORT}.conf --cluster-node-timeout $TIMEOUT --appendonly yes --appendfilename appendonly-${PORT}.aof --dbfilename dump-${PORT}.rdb --logfile ${PORT}.log --daemonize yes
|
|
done
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$1" == "create" ]
|
|
then
|
|
HOSTS=""
|
|
while [ $((PORT < ENDPORT)) != "0" ]; do
|
|
PORT=$((PORT+1))
|
|
HOSTS="$HOSTS 127.0.0.1:$PORT"
|
|
done
|
|
./redis-trib.rb create --replicas $REPLICAS $HOSTS
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$1" == "stop" ]
|
|
then
|
|
while [ $((PORT < ENDPORT)) != "0" ]; do
|
|
PORT=$((PORT+1))
|
|
echo "Stopping $PORT"
|
|
redis-cli -p $PORT shutdown nosave
|
|
done
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$1" == "watch" ]
|
|
then
|
|
PORT=$((PORT+1))
|
|
while [ 1 ]; do
|
|
clear
|
|
date
|
|
redis-cli -p $PORT cluster nodes | head -30
|
|
sleep 1
|
|
done
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$1" == "tail" ]
|
|
then
|
|
INSTANCE=$2
|
|
PORT=$((PORT+INSTANCE))
|
|
tail -f ${PORT}.log
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$1" == "call" ]
|
|
then
|
|
while [ $((PORT < ENDPORT)) != "0" ]; do
|
|
PORT=$((PORT+1))
|
|
redis-cli -p $PORT $2 $3 $4 $5 $6 $7 $8 $9
|
|
done
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$1" == "clean" ]
|
|
then
|
|
rm -rf *.log
|
|
rm -rf appendonly*.aof
|
|
rm -rf dump*.rdb
|
|
rm -rf nodes*.conf
|
|
exit 0
|
|
fi
|
|
|
|
echo "Usage: $0 [start|create|stop|watch|tail|clean]"
|
|
echo "start -- Launch Redis Cluster instances."
|
|
echo "create -- Create a cluster using redis-trib create."
|
|
echo "stop -- Stop Redis Cluster instances."
|
|
echo "watch -- Show CLUSTER NODES output (first 30 lines) of first node."
|
|
echo "tail <id> -- Run tail -f of instance at base port + ID."
|
|
echo "clean -- Remove all instances data, logs, configs."
|