1、删除一个Slave节点
./redis-cli --cluster del-node 127.0.0.1:7001 74957282ffa94c828925c4f7026baac04a67e291
返回信息:
>>> Removing node 74957282ffa94c828925c4f7026baac04a67e291 from cluster 127.0.0.1:7000
>>> Sending CLUSTER FORGET messages to the cluster...
>>> SHUTDOWN the node.
2、删除一个Master节点
删除master节点之前首先要使用reshard移除master的全部slot,然后再删除当前节点(目前只能把被删除master的slot迁移到一个节点上)
./redis-cli --cluster reshard 127.0.0.1:7002
移除完成:
#删除空master节点
./redis-cli --cluster del-node 127.0.0.1:7002 a70d7fff6d6dde511cb7cb632a347be82dd34643
(最后仅剩7003)
参考: