美文网首页
Redis 哨兵模式(故障自动切换)用户无感知

Redis 哨兵模式(故障自动切换)用户无感知

作者: 无味wy | 来源:发表于2022-08-07 17:22 被阅读0次

资源清单

#首先搭建一主两从复制环境、这里不做详细介绍 之前的文章有写过

主:10.0.0.100
从:10.0.0.101
从:10.0.0.102

三个节点分别启动一个哨兵

哨兵sentinel配置

vim  /usr/local/redis/sentinel.conf
port 26379
daemonize yes
protected-mode no
pidfile "/var/run/redis-sentinel_26379.pid"
logfile "/data/logs/redis/26379.log"
#设定监控地址,为对应的主redis库的内网地址,mymaster为集群名字,可以根据情况自己修改
sentinel monitor mymaster 10.0.0.100 6379 2  
#指定了Sentinel认为服务器已经断线所需的毫秒数。
sentinel down-after-milliseconds mymaster 3000
#设置集群从判断节点挂掉,到执行故障转移操作(即重新选举master节点)的时间
sentinel failover-timeout mymaster 10000
#主数据库密码,需要将配置放在sentinel monitor mymaster 10.0.0.100 6379 2下面
sentinel auth-pass mymaster 123

启动哨兵

10.0.0.100    redis-sentinel /usr/local/redis/sentinel.conf
10.0.0.101    redis-sentinel /usr/local/redis/sentinel.conf
10.0.0.102    redis-sentinel /usr/local/redis/sentinel.conf

查看进程

[root@redis01 redis]# redis-sentinel /usr/local/redis/sentinel.conf 
[root@redis01 redis]# ps -ef|grep redis
root      12179      1  0 16:55 ?        00:00:00 redis-server 0.0.0.0:6379
root      12206      1  0 17:02 ?        00:00:00 redis-sentinel *:26379 [sentinel]
root      12212  11984  0 17:03 pts/0    00:00:00 grep --color=auto redis

查看哨兵状态

redis-cli -h 10.0.0.100 -p 26379 -a 123 info Sentinel

[root@redis01 redis]# redis-cli -h 10.0.0.100 -p 26379 -a 123 info Sentinel
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
Warning: AUTH failed
# Sentinel
sentinel_masters:1
sentinel_tilt:0
sentinel_running_scripts:0
sentinel_scripts_queue_length:0
sentinel_simulate_failure_flags:0
master0:name=mymaster,status=ok,address=10.0.0.100:6379,slaves=2,sentinels=3

杀死主库进行故障测试

10.0.0.100     pkill redis-server   
#30秒后再启动
10.0.0.100     redis-server /usr/local/redis/redis.conf

查看哨兵状态及主库的调度情况

[root@redis01 redis]# redis-cli -h 10.0.0.100 -p 26379 -a 123 info Sentinel
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
Warning: AUTH failed
# Sentinel
sentinel_masters:1
sentinel_tilt:0
sentinel_running_scripts:0
sentinel_scripts_queue_length:0
sentinel_simulate_failure_flags:0
master0:name=mymaster,status=ok,address=10.0.0.101:6379,slaves=2,sentinels=3
#状态ok      # IP已切换到10.0.0.101      #从库2个         #哨兵3个             !正常 !

测试期间带有一些key,过程也添加了一些、只要用默认的配置做RDB持久化数据不会丢失

相关文章

  • Redis 哨兵模式(故障自动切换)用户无感知

    资源清单 哨兵sentinel配置 启动哨兵 查看进程 查看哨兵状态 杀死主库进行故障测试 查看哨兵状态及主库的调...

  • Redis sentinel 学习

    定义 Redis sentinel称为哨兵模式,是Redis 高可用的实现方法,具有故障发现,故障自动转移,配置中...

  • redis 哨兵机制

    哨兵机制的作用 服务发现和健康检查 故障切换流程 七大核心概念 哨兵如何知道Redis主从信息(自动发现机制) 什...

  • Redis哨兵

    Redis哨兵 作用:监控主节点和从节点的状态,自动完成故障发现和故障迁移(保证Redis服务的高可用) 节点信息...

  • springboot整合redis(单机+哨兵模式)

    一:引入maven依赖 二:添加redis配置 三:编写redis配置类(切换注释即可切换单机、哨兵集群模式) 四...

  • Redis哨兵模式

    Redis哨兵比主从复制多了 sentinel 节点,当主节点出现故障的时候,有 sentinel 自动完成故障发...

  • Redis数据库--哨兵管理

    一、Redis哨兵介绍及功能: 1.哨兵简介 Redis 的主从模式下,主节点一旦发生故障不能提供服务,需要人工干...

  • redis 哨兵(Sentinel)

    redis在主从复制的基础上,哨兵实现了自动化的故障恢复。 描述 监控(Monitoring):哨兵会不断地检查主...

  • Redis学习笔记3

    P1 sentinel13.redis-sentinel(哨兵)1、监控2、自动选主,切换(6381 slaveo...

  • The Road of DBA 16_NoSQL_Redis C

    故障等级 6.Redis Cluster 哨兵的不足 Redis Cluster Redis Cluster 集群...

网友评论

      本文标题:Redis 哨兵模式(故障自动切换)用户无感知

      本文链接:https://www.haomeiwen.com/subject/xvwwwrtx.html