这里实验的是129、130、240三台服务器6个节点的部署(redis集群最低要6个节点,不然无法创建)。
1.压缩包安装
# tar -xzvf redis-5.0.7.tar.gz
# cd redis-5.0.7
# make
# cd src & make test
 
2、配置文件
129
cd /utxt/soft/redis-cluster
mkdir 40000
mkdir 40001
 
cp redis.conf /utxt/soft/redis-cluster/40000
cp redis.conf /utxt/soft/redis-cluster/40001
 
vi redis.conf
具体修改:
(1)port 40000 #绑定端口
 
(2)bind 192.168.150.129 #定IP也(可以注释掉,这样任何桌面客户端都可以连接了)
 
(3)dir /utxt/soft/redis-cluster/40000 #指定文件存放路径 ( .rdb .aof nodes-xxxx.conf 这样的文件都会在此路径下)
 
(4)cluster-enabled yes #启动集群模式
 
(5)cluster-config-file #集群节点配置文件
 
(6)daemonize yes #后台启动
 
(7)cluster-node-timeout 5000 #指定集群节点超时时间
 
(8)appendonly yes #指定持久化方式
 
(9)protected-mode no #非保护模式
 
(10)pidfile /utxt/soft/redis-cluster/40000
 
(11)logfile "/utxt/soft/redis-cluster/40000/redis.log"
 
(12)masterauth "czty_yjyh"
 
(13)requirepass "czty_yjyh"
 
130、240服务器同理操作即可
 
3、启动节点
129
/utxt/soft/redis-5.0.7/src/redis-server /utxt/soft/redis-cluster/40000/redis.conf
/utxt/soft/redis-5.0.7/src/redis-server /utxt/soft/redis-cluster/40001/redis.conf
130
/utxt/soft/redis-5.0.7/src/redis-server /utxt/soft/redis-cluster/40002/redis.conf
/utxt/soft/redis-5.0.7/src/redis-server /utxt/soft/redis-cluster/40003/redis.conf
240
/utxt/soft/redis-5.0.7/src/redis-server /utxt/soft/redis-cluster/40004/redis.conf
/utxt/soft/redis-5.0.7/src/redis-server /utxt/soft/redis-cluster/40005/redis.conf
 
4、启动集群
 
./redis-cli --cluster create 192.168.150.129:40000 192.168.150.130:40002 192.168.150.240:40004 192
.168.150.129:40001  192.168.150.130:40003 192.168.150.240:40005  --cluster-replicas 1 -a czty_yjyh
// --replicas 1 表示我们希望为集群中的每个主节点创建一个从节点。(--cluster-replicas 1 命令的意思: 一主一从配置,六个节点就是 三主三从)
 
5、客户端登录
/utxt/soft/redis-5.0.7/src/redis-cli -c -p 40000 -h 192.168.150.129 -a czty_yjyh
查看节点信息
 

05-26 17:40