-
-
Save tungpt247/84528541eedb3c60d718a891bcca6c4a to your computer and use it in GitHub Desktop.
Use redis-cli to create a Redis Cluster on Docker (with Redis 5.0)
This file contains 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
#------------ bootstrap the cluster nodes -------------------- | |
start_cmd='redis-server --port 6379 --cluster-enabled yes --cluster-config-file nodes.conf --cluster-node-timeout 5000 --appendonly yes' | |
redis_image='redis:5.0-rc' | |
network_name='redis_cluster_net' | |
docker network create $network_name | |
echo $network_name " created" | |
#---------- create the cluster ------------------------ | |
for port in `seq 6379 6384`; do \ | |
docker run -d --name "redis-"$port -p $port:6379 --net $network_name $redis_image $start_cmd; | |
echo "created redis cluster node redis-"$port | |
done | |
cluster_hosts='' | |
for port in `seq 6379 6384`; do \ | |
hostip=`docker inspect -f '{{(index .NetworkSettings.Networks "redis_cluster_net").IPAddress}}' "redis-"$port`; | |
echo "IP for cluster node redis-"$port "is" $hostip | |
cluster_hosts="$cluster_hosts$hostip:6379 "; | |
done | |
echo "cluster hosts "$cluster_hosts | |
echo "creating cluster...." | |
echo 'yes' | docker run -i --rm --net $network_name $redis_image redis-cli --cluster create $cluster_hosts --cluster-replicas 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment