mirror of
https://github.com/Estom/notes.git
synced 2026-02-03 02:23:31 +08:00
16 lines
401 B
Bash
16 lines
401 B
Bash
for port in $(seq 1 6); \
|
|
do \
|
|
mkdir -p ./mydata/redis/node-${port}/conf
|
|
touch ./mydata/redis/node-${port}/conf/redis.conf
|
|
cat << EOF >./mydata/redis/node-${port}/conf/redis.conf
|
|
port 6379
|
|
bind 0.0.0.0
|
|
cluster-enabled yes
|
|
cluster-config-file nodes.conf
|
|
cluster-node-timeout 5000
|
|
cluster-announce-ip 172.38.0.1${port}
|
|
cluster-announce-port 6379
|
|
cluster-announce-bus-port 16379
|
|
appendonly yes
|
|
EOF
|
|
done |