simulate a redis cluster on a linux host according to the tutorial https://redis.io/topics/clust...
on the official website, where the command to set up the cluster is as follows:
redis-cli --cluster create 127.0.0.1:7000 127.0.0.1:7001 \
127.0.0.1:7002 127.0.0.1:7003 127.0.0.1:7004 127.0.0.1:7005 \
--cluster-replicas 1
I have been stuck in
waiting for the cluster to join since I replaced 127.0.0.1 in the command with the real IP of the linux host.
IP127.0.0.1
Linuxredis:
for answers!