我正在使用this图片,并在OpenShift上创建了两个REDIS部署。
部署名称为redis-node01
和redis-node02
。
我还创建了最小的REDIS集群配置文件,如here所述。
它看起来像这样,并在REDIS启动时加载:
port 7000
cluster-enabled yes
cluster-config-file nodes.conf
cluster-node-timeout 5000
appendonly yes
现在我打开其中一个REDIS容器的终端,并发出cluster meet命令,如here所述。我收到这个错误:
(error) ERR Invalid node address specified: redis-node02:6379
我想REDIS无法联系该地址上的另一个实例?如何解决这个问题?