环境
系统:CentOS 7
软件:redis-6.2.6.tar.gz
主机:
redis1: 10.0.0.1
redis2: 10.0.0.2
redis3: 10.0.0.3
准备
集群配置
-
配置
vim /etc/redis.conf 添加 cluster-enabled yes
-
重启生效
systemctl restart redis
-
创建集群
3台Redis主机安装配置完成后,在任意1台主机上执行redis-cli --cluster create 10.0.0.1:6379 10.0.0.2:6379 10.0.0.3:6379 -a 123456
-
查看集群信息
redis-cli -c -h 10.0.0.1 -p 6379 -a 123456 cluster info cluster nodes
网友评论