redis安装 3台机器 6节点
一: redis官网地址: 6.2.6版本
1 | Index of /releases/http://download.redis.io/releases/
二: 编辑配置文件
1: 注释本地IP地址:
1: bind: 本地IP
2: protected-mode no: #关闭保护模式
3: port: 端口
4: appendonly yes #开启AOF持久化或者关闭
5: 后台启动 daemonize yes
6: pidfile
7: dir 持久化路径
8: mamemory-policy volatitle-lru 内存优化策略
9: 开启集群配置 cluster-enabled yes
10: 集群配置文件
cluster-config-file
11: 修改集群超时时间
cluster-node-timeout 15000
12: 日志位置
logfile
13: 链接密码
requirepass ""
auth 认证
三: 启动
./redis-server ../redis.conf & 逐台启动
集群启动:
./redis-cli --cluster create --cluster-replicas 1 192.168.80.101:7000 192.168.80.101:7001 192.168.80.102:7002 192.168.80.102:7003 192.168.80.103:7004 192.168.80.103:7005 -a root
四: 进入集群验证:
-c: 集群方式启动
redis-cli -c -p 7004 -a auth -h IP
set name value
get name