全网超详细Redis集群部署
创建三主三从集群模式,每一个主节点带一个从节点。6379bug需将此进程关闭。再次启动6379的配置文件。以上命令三个虚拟机的得运行。还可以用该命令查看节点信息。配置6379文件内容。#允许所有的ip地址。配置6380文件内容。#允许所有的ip地址。再次查看服务是否启动。
mkdir -p /opt/software/redis/redis-stable/cluster
vim ./cluster/redis_6379.conf
配置6379文件内容
#允许所有的ip地址
bind * -::*
#后台运行
daemonize yes
#允许远程连接
protected-mode no
#开启集群模式
cluster-enabled yes
#集群节点超时时间
cluster-node-timeout 5000
#配置数据存储目录
dir "/opt/software/redis/cluster"
#开启AOF持久化
appendonly yes
#端口
port 6379
#log日志
logfile "/opt/software/redis/redis-stable/cluster/redis6379.log"
#集群配置文件
cluster-config-file nodes-6379.conf
#AOF文件名
appendfilename "appendonly6379.aof"
#RBD文件名
dbfilename "dump6379.rdb"
配置6380文件内容
vim ./cluster/redis_6380.conf
#允许所有的ip地址
bind * -::*
#后台运行
daemonize yes
#允许远程连接
protected-mode no
#开启集群模式
cluster-enabled yes
#集群节点超时时间
cluster-node-timeout 5000
#配置数据存储目录
dir "/opt/software/redis/cluster"
#开启AOF持久化
appendonly yes
#端口
port 6380
#log日志
logfile "/opt/software/redis/redis-stable/cluster/redis6380.log"
#集群配置文件
cluster-config-file nodes-6380.conf
#AOF文件名
appendfilename "appendonly6380.aof"
#RBD文件名
dbfilename "dump6380.rdb"
启动配置文件
redis-server ./cluster/redis_6379.conf
redis-server ./cluster/redis_6380.conf
查看服务是否启动
查看进程命令
ps aux|grep redis
6379bug需将此进程关闭
redis-cli -p 26379 shutdown
redis-cli shutdown
再次启动6379的配置文件
redis-server ./cluster/redis_6379.conf
以上命令三个虚拟机的得运行
再次查看服务是否启动
ps aux|grep redis
创建三主三从集群模式,每一个主节点带一个从节点
redis-cli --cluster create --cluster-replicas 1 192.168.187.137:6379 192.168.187.137:6380 192.168.187.138:6379 192.168.187.138:6380 192.168.187.139:6379 192.168.187.139:6380
查看集群信息
redis-cli cluster info
查看节点信息
redis-cli info replication
还可以用该命令查看节点信息
redis-cli cluster nodes
更多推荐
所有评论(0)