redis cluster最简配置
master配置如下:(默认6379端口)
1 bind 127.0.0.1 2 port 6379 3 timeout 0 4 databases 16
slave1配置如下:(端口6380)
1 bind 127.0.0.1 2 port 6380 3 cluster-enabled no 4 slaveof 127.0.0.1 6379 5 timeout 0
slave2配置如下:(端口6381)
1 bind 127.0.0.1 2 port 6381 3 cluster-enabled no 4 slaveof 127.0.0.1 6379 5 timeout 0
启动服务:redis-server conf文件路径
客户端信息如下:redis-cli -p 端口号 ; info replication
则此时redis cluster的主从配置完毕(其实其他的参数也应该根据实际情况调整,只是此随笔是精简的体现出主从配置重要的参数)