Redis笔记-Sentinel哨兵模式
Redis以主从的模式搭建集群后,如果主节点Master挂掉,虽然可以实现将备用节点Slave切换成主节点,但是Redis本身并没有自动监控机制,需要借助Sentinel哨兵模式,实现监控并实现自动切换。为了实现Sentinel的高可用,需要sentinel也以集群模式来搭建,这里通过一台机器的不同端口来模拟。相关环境信息如下:
1、Redis集群信息:
| 角色 | IP地址 | 监听端口 |
| Master | 127.0.0.1 | 6379 |
| Slave | 127.0.0.1 | 6380 |
| Slave | 127.0.0.1 | 6381 |
Sentinel集群信息:
| 哨兵角色 | IP地址 | 监听端口 |
| Node-1 | 127.0.0.1 | 26379 |
| Node-2 | 127.0.0.1 | 26380 |
| Node-3 | 127.0.0.1 | 26381 |
2、Redis集群搭建过程参考上篇,这里不再描述。首先启动Redis的主节点和两个Slave节点。
进入Master节点,查看信息:
[root@VM_0_14_centos bin]# ./redis-cli -h 127.0.0.1 -p -a funnyboy
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
127.0.0.1:> info replication
# Replication
role:master
connected_slaves:
slave0:ip=127.0.0.1,port=,state=online,offset=,lag=
slave1:ip=127.0.0.1,port=,state=online,offset=,lag=
master_replid:d5802af0905736ae28201050ce4871ee2921c16c
master_replid2:
master_repl_offset:
second_repl_offset:-
repl_backlog_active:
repl_backlog_size:
repl_backlog_first_byte_offset:
repl_backlog_histlen:
127.0.0.1:>
显示当前节点role为master,并且连接的slave个数为2,OK。
分别进入两个slave节点查看信息:
[root@VM_0_14_centos bin]# ./redis-cli -h 127.0.0.1 -p -a funnyboy
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
127.0.0.1:> info replication
# Replication
role:slave
master_host:127.0.0.1
master_port:
master_link_status:up
master_last_io_seconds_ago:
master_sync_in_progress:
slave_repl_offset:
slave_priority:
slave_read_only:
connected_slaves:
master_replid:d5802af0905736ae28201050ce4871ee2921c16c
master_replid2:
master_repl_offset:
second_repl_offset:-
repl_backlog_active:
repl_backlog_size:
repl_backlog_first_byte_offset:
repl_backlog_histlen:
127.0.0.1:>
[root@VM_0_14_centos bin]# ./redis-cli -h 127.0.0.1 -p -a funnyboy
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
127.0.0.1:> info replication
# Replication
role:slave
master_host:127.0.0.1
master_port:
master_link_status:up
master_last_io_seconds_ago:
master_sync_in_progress:
slave_repl_offset:
slave_priority:
slave_read_only:
connected_slaves:
master_replid:d5802af0905736ae28201050ce4871ee2921c16c
master_replid2:
master_repl_offset:
second_repl_offset:-
repl_backlog_active:
repl_backlog_size:
repl_backlog_first_byte_offset:
repl_backlog_histlen:
127.0.0.1:>
角色都为slave,并且master信息正常。确保Redis集群OK后,开始准备搭建sentinel集群。
3、Sentinel集群搭建
step1、将redis-sentinel拷贝到redis对应的执行目录bin(该命令是redis-server的一个连接,用redis-server也OK,后面讲到,启动sentinel会有两种方式),然后拷贝sentinel.config到redis配置文件目录config。

step2、分别编辑sentinel的配置文件(没特别强调的保持默认即可)
sentinel-26379.conf配置如下:
daemonize yes #开启后台守护进程
port #端口配置
pidfile "/usr/local/redis/pid/redis-sentinel-26379.pid" #PID文件
logfile "/usr/local/redis/logs/sentinel-26379.log" #日志文件
sentinel monitor mymaster 127.0.0.1 #哨兵监控配置。注意,如果配置了认证,改配置必须在auth-pass配置之前,否则启动报找不到master的错误
sentinel auth-pass mymaster funnyboy #认证配置
sentinel down-after-milliseconds mymaster #master或者slave多少时间(默认30秒)不能使用标记为down状态。
sentinel failover-timeout mymaster #若哨兵在配置值内未能完成故障转移操作,则任务本次故障转移失败。
sentinel-26380.conf配置如下:
daemonize yes #开启后台守护进程
port #端口配置
pidfile "/usr/local/redis/pid/redis-sentinel-26380.pid" #PID文件
logfile "/usr/local/redis/logs/sentinel-26380.log" #日志文件
sentinel monitor mymaster 127.0.0.1 #哨兵监控配置。注意,如果配置了认证,改配置必须在auth-pass配置之前,否则启动报找不到master的错误
sentinel auth-pass mymaster funnyboy #认证配置
sentinel down-after-milliseconds mymaster #master或者slave多少时间(默认30秒)不能使用标记为down状态。
sentinel failover-timeout mymaster #若哨兵在配置值内未能完成故障转移操作,则任务本次故障转移失败。
sentinel-26381.conf配置如下:
daemonize yes #开启后台守护进程
port #端口配置
pidfile "/usr/local/redis/pid/redis-sentinel-26381.pid" #PID文件
logfile "/usr/local/redis/logs/sentinel-26381.log" #日志文件
sentinel monitor mymaster 127.0.0.1 #哨兵监控配置。注意,如果配置了认证,改配置必须在auth-pass配置之前,否则启动报找不到master的错误
sentinel auth-pass mymaster funnyboy #认证配置
sentinel down-after-milliseconds mymaster #master或者slave多少时间(默认30秒)不能使用标记为down状态。
sentinel failover-timeout mymaster #若哨兵在配置值内未能完成故障转移操作,则任务本次故障转移失败。
step3、启动哨兵监控程序:
[root@VM_0_14_centos redis]# ./bin/redis-sentinel ./config/sentinel-.conf
[root@VM_0_14_centos redis]# ./bin/redis-sentinel ./config/sentinel-.conf
[root@VM_0_14_centos redis]# ./bin/redis-sentinel ./config/sentinel-.conf
启动有两种方式:
一是执行:redis-sentinel sentinel.conf
二是执行:redis-server sentinel --sentinel
step4、通过哨兵连接,并检查信息:
[root@VM_0_14_centos bin]# ./redis-cli -h 127.0.0.1 -p -a funnyboy
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
127.0.0.1:> info sentinel
# Sentinel
sentinel_masters:
sentinel_tilt:
sentinel_running_scripts:
sentinel_scripts_queue_length:
sentinel_simulate_failure_flags:
master0:name=mymaster,status=ok,address=127.0.0.1:,slaves=,sentinels=
127.0.0.1:>
可以看到监控的redis服务,一个Master、两个Slave、sentinels = 3 说明配置OK。
4、模拟场景:Redis Master节点挂掉,查看Redis集群状态。
step1、关掉Master节点:
[root@VM_0_14_centos bin]# ./redis-cli -p -a funnyboy
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
127.0.0.1:> shutdown
not connected>
[root@VM_0_14_centos bin]#
step2、通过哨兵查看集群状态:
127.0.0.1:> info sentinel
# Sentinel
sentinel_masters:
sentinel_tilt:
sentinel_running_scripts:
sentinel_scripts_queue_length:
sentinel_simulate_failure_flags:
master0:name=mymaster,status=ok,address=127.0.0.1:,slaves=,sentinels=
127.0.0.1:>
通过sentinel信息可以看到,Master节点已经自动切换到6380端口了,说明主节点挂掉后,6380 Slave节点自动升级成为了Master节点。
step3、启动6379 redis服务,然后查看节点角色,此时6379变成了Slave,6380为Master节点,OK。
[root@VM_0_14_centos redis]# ./bin/redis-server ./config/redis-.conf
[root@VM_0_14_centos redis]# ./bin/redis-cli -p -a funnyboy
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
127.0.0.1:>
127.0.0.1:> info replication
# Replication
role:slave
master_host:127.0.0.1
master_port:
master_link_status:up
master_last_io_seconds_ago:
master_sync_in_progress:
slave_repl_offset:
slave_priority:
slave_read_only:
connected_slaves:
master_replid:c77763408266bcebf233bdc9e59e3bcf14dc7a08
master_replid2:
master_repl_offset:
second_repl_offset:-
repl_backlog_active:
repl_backlog_size:
repl_backlog_first_byte_offset:
repl_backlog_histlen:
Redis笔记-Sentinel哨兵模式的更多相关文章
- SpringBoot进阶教程(三十)整合Redis之Sentinel哨兵模式
Redis-Sentinel是官方推荐的高可用解决方案,当redis在做master-slave的高可用方案时,假如master宕机了,redis本身(以及其很多客户端)都没有实现自动进行主备切换,而 ...
- 【Redis】Sentinel 哨兵模式
Sentinel(哨兵模式) 目录 Sentinel(哨兵模式) 哨兵模式的三个定时任务 Sentinel(哨兵)与Sentinel .主服务器.从服务器之间的连接 检测下线状态 选择领头 Senti ...
- (六) Docker 部署 Redis 高可用集群 (sentinel 哨兵模式)
参考并感谢 官方文档 https://hub.docker.com/_/redis GitHub https://github.com/antirez/redis happyJared https:/ ...
- Linux基于Docker的Redis主从复制、哨兵模式搭建
本教程基于CentOS7,开始本教程前,请确保您的Linux系统已安装Docker. 1.使用docker下载redis镜像 docker pull redis 安装完成后,使用docker imag ...
- Redis——(主从复制、哨兵模式、集群)的部署及搭建
Redis--(主从复制.哨兵模式.集群)的部署及搭建 重点: 主从复制:主从复制是高可用redis的基础,主从复制主要实现了数据的多机备份,以及对于读操作的负载均衡和简单的故障恢复. 哨兵和集群都是 ...
- 浅谈:redis的主从复制 + 哨兵模式
浅谈:redis的主从复制 + 哨兵模式 主从模式 在谈论redis的主从复制之前,我们先回想下mysql的主从搭建过程,第一步呢首先要在主库服务器中修改my.cnf,开启一下bin_log功能, ...
- Redis sentinel 哨兵模式集群方案配置
第一个方案是创建 redis cluster,第二种方案就是用哨兵模式来进行主从替换以及故障恢复.兵模式集群方案配置 一.sentinel介绍 Sentinel作用: 1):Master状态检测 2) ...
- Redis sentinel 哨兵模式
一.sentinel介绍 Sentinel作用: 1):Master状态检测 2):如果Master异常,则会进行Master-Slave切换,将其中一个Slave作为Master,将之前的Maste ...
- redis sentinel哨兵模式集群搭建教程
1.环境说明 我们将使用192.168.220.128.192.168.220.129两台机器搭建sentinel交叉主从为例 当前我们已在192.168.220.128上按redis安装教程安装了r ...
随机推荐
- CSS入门知识汇总
1.CSS认识 在谈论CSS的概念之前,我们先说一说web标准的目的——其在于创建一个统一的用于web表现层的技术标准,以便通过不同浏览器或终端设备向最终用户展示信息内容.一个网页的呈现是由三部分组成 ...
- 解决Maven无法下载fastdfs-client-java依赖,Dependency 'org.csource:fastdfs-client-java:1.27-SNAPSHOT' not found.
因为fastdfs-client-java-1.27-SNAPSHOT.jar这个依赖包在maven中央仓库是没有的, 需要自己编译源码成jar本地安装到maven 的本地仓库,安装完以后就能正常引用 ...
- Storm入门(九)Storm常见模式之流聚合
流聚合(stream join)是指将具有共同元组(tuple)字段的数据流(两个或者多个)聚合形成一个新的数据流的过程. 从定义上看,流聚合和SQL中表的聚合(table join)很像,但是二者有 ...
- 终于等到你:CYQ.Data V5系列 (ORM数据层,支持.NET Core)最新版本开源了
前言: 不要问我框架为什么从收费授权转到免费开源,人生没有那么多为什么,这些年我开源的东西并不少,虽然这个是最核心的,看淡了就也没什么了. 群里的网友:太平说: 记得一年前你开源另一个项目的时候我就说 ...
- 关于:未能加载文件或程序集“ICSharpCode.SharpZipLib”或它的某一个依赖项异常的解决方案
问题: 今天项目迁移忽然又个ICSharpCode.SharpZipLib.dll 程序包丢失了,于是我在网上下载一个这样的包,结果程序运行就提示:未能加载文件或程序集“ICSharpCode.Sha ...
- vs 2017
Enterprise: NJVYC-BMHX2-G77MM-4XJMR-6Q8QF Professional: KBJFW-NXHK6-W4WJM-CRMQB-G3CDH
- python爬虫数据解析之xpath
xpath是一门在xml文档中查找信息的语言.xpath可以用来在xml文档中对元素和属性进行遍历. 在xpath中,有7中类型的节点,元素,属性,文本,命名空间,处理指令,注释及根节点. 节点 首先 ...
- 开发人员的必备工具Git(初级)
Git是什么 Git是目前世界上最先进的分布式版本控制系统. 这个软件用起来就应该像这个样子,能记录每次文件的改动: 举个栗子 : 版本 用户 说明 日期 1 张三 删除了软件服务条款5 ...
- 03 JVM 从入门到实战 | 简述垃圾回收算法
引言 之前我们学习了 JVM 基本介绍 以及 什么样的对象需要被 GC ,今天就来学习一下 JVM 在判断出一个对象需要被 GC 会采用何种方式进行 GC.在学习 JVM 如何进行垃圾回收方法时,发现 ...
- 用ASP.NET Core 2.1 建立规范的 REST API -- 保护API和其它
本文介绍如何保护API,无需看前边文章也能明白吧. 预备知识: http://www.cnblogs.com/cgzl/p/9010978.html http://www.cnblogs.com/cg ...