需求:使用cluster slots命令,获取redis cluster 主从对应关系。
说明:cluster slots命令对应的字段说明:http://redis.cn/commands/cluster-slots.html
redis-cli -h IP -p PORT -a PASSWD -c cluster slots | xargs -n8 | awk ‘{print $3":"$4"->"$6":"$7}‘ | sort -nk2 -t ‘:‘ | uniq
测试结果:
[[email protected] ~]$ redis-cli -h 5.5.5.101 -p 29001 -c cluster slots | xargs -n8 | awk ‘{print $3":"$4"->"$6":"$7}‘ | sort -nk2 -t ‘:‘ | uniq 5.5.5.102:29001->5.5.5.101:29001 5.5.5.103:29002->5.5.5.102:29002 5.5.5.101:29003->5.5.5.103:29003
原文地址:https://www.cnblogs.com/zhangrui153169/p/12697003.html
时间: 2024-10-30 00:34:03