redis哨兵常用命令和监控示例详解


Posted in Redis onMay 27, 2021

sentinel monitor advertise 192.168.0.5 28001 2
sentinel set advertise client-reconfig-script /etc/redis/reconfig.sh
sentinel flushconfig

sentinel启动后需要手动将配置文件对应的调整为sentinel deny-scripts-reconfig no,否则不支持命令行runtime修改client-reconfig-script
# SECURITY
#
# By default SENTINEL SET will not be able to change the notification-script
# and client-reconfig-script at runtime. This avoids a trivial security issue
# where clients can set the script to anything and trigger a failover in order
# to get the program executed.

#sentinel deny-scripts-reconfig yes

role命令
查看sentinel monitor的master names名字

sentinel masters
查看所有监控master及其配置信息

sentinel master monitor_name
查看指定监控master及其配置信息

sentinel failover monitor_name
手动进行swithover切换主从,如果有多个slave会选择哪个slave做为新的master,待测试?

sentinel moniotr <name> <ip> <port> <quorum>
添加监视的master

sentinel remove monitor_name
将监视的为name的master移除监视

sentinel set <mastername> [<option> <value>]
修改监视的master的一些属性
down-after-milliseconds 过了这个时间考虑master go down
failover-timeout 刷新故障转移状态的最大时间
parallel-syncs slave同时reconfigure的个数
notification-script 设置通知脚本
client-reconfig-script 设置通知脚本
auth-pass 执行auth的密码
quorum 修改master的quorum

sentinel flushconfig

将sentinel信息写入到配置文件中

sentinel配置文件示例:

daemonize yes
pidfile "/home/redis/sentinel/25000/redis.pid"
loglevel notice
protected-mode yes
bind 192.168.100.5
logfile "/home/redis/sentinel/25000/redis.log"
port 25000
dir "/home/redis/sentinel/25000"
# Generated by CONFIG REWRITE
sentinel myid 0338c4ceb7cf39a8037a22fa17d0f7a76923b5a0
sentinel deny-scripts-reconfig no
sentinel monitor advertise 192.168.100.5 28001 2
sentinel client-reconfig-script advertise /etc/redis/reconfig.sh
sentinel config-epoch advertise 4
sentinel leader-epoch advertise 4
sentinel known-replica advertise 192.168.100.6 28001
sentinel known-sentinel advertise 192.168.100.7 25000 06f937e1d35496dc66d2899e3b25e286ff91d658
sentinel known-sentinel advertise 192.168.100.6 25000 ede86ac0b7d2ff7b532d0e5352ba6e33dd36670e
 
sentinel monitor mymaster1 192.168.100.6 28002 2
sentinel client-reconfig-script mymaster1 /etc/redis/reconfig.sh
sentinel config-epoch mymaster1 5
sentinel leader-epoch mymaster1 1
sentinel known-replica mymaster1 192.168.100.5 28002
sentinel known-sentinel mymaster1 192.168.100.7 25000 06f937e1d35496dc66d2899e3b25e286ff91d658
sentinel known-sentinel mymaster1 192.168.100.6 25000 ede86ac0b7d2ff7b532d0e5352ba6e33dd36670e
sentinel current-epoch 5

sentinel client-reconfig-script脚本示例

#!/bin/bash
 
check_time=$(date +"%F-%T")
master_name="$1"
from_ip="$4"
from_port="$5"
to_ip="$6"
to_port="$7"
 
 
#填写自己正确的机器人链接
curl 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=xxxx' \
   -H 'Content-Type: application/json' \
   -d '
   {
        "msgtype": "text",
        "text": {
            "content": "【'$check_time' '$master_name' redis failover】\nfrom\n'$from_ip:$from_port'\nto\n'$to_ip:$to_port'",
            "mentioned_list":["xiaodongl"]
        }
   }'

以上就是redis哨兵常用命令和监控的详细内容,更多关于redis哨兵常用命令的资料请关注三水点靠木其它相关文章!

Redis 相关文章推荐
浅谈redis五大数据结构和使用场景
Apr 12 Redis
在K8s上部署Redis集群的方法步骤
Apr 27 Redis
详解Redis复制原理
Jun 04 Redis
redis requires ruby version2.2.2的解决方案
Jul 15 Redis
Redis集群新增、删除节点以及动态增加内存的方法
Sep 04 Redis
Jedis操作Redis实现模拟验证码发送功能
Sep 25 Redis
redis缓存存储Session原理机制
Nov 20 Redis
关于使用Redisson订阅数问题
Jan 18 Redis
聊聊redis-dump工具安装问题
Jan 18 Redis
Redis之RedisTemplate配置方式(序列和反序列化)
Mar 13 Redis
Redis入门基础常用操作命令整理
Jun 01 Redis
Redis实现主从复制方式(Master&Slave)
Jun 21 Redis
Java Socket实现Redis客户端的详细说明
May 26 #Redis
redis实现共同好友的思路详解
详解Redis瘦身指南
May 26 #Redis
Redis高级数据类型Hyperloglog、Bitmap的使用
May 24 #Redis
redis实现排行榜功能
May 24 #Redis
分布式锁为什么要选择Zookeeper而不是Redis?看完这篇你就明白了
May 21 #Redis
Redis 配置文件重要属性的具体使用
May 20 #Redis
You might like
PHP安全配置
2006/10/09 PHP
PHP实现图片压缩的两则实例
2014/07/19 PHP
smarty半小时快速上手入门教程
2014/10/27 PHP
PHP实现搜索地理位置及计算两点地理位置间距离的实例
2016/01/08 PHP
php防止表单重复提交实例讲解
2019/02/11 PHP
使用JQuery快速实现Tab的AJAX动态载入(实例讲解)
2013/12/11 Javascript
IE6下javasc#ipt:void(0) 无效的解决方法
2013/12/23 Javascript
javascript表单事件处理方法详解
2016/05/15 Javascript
浅谈js for循环输出i为同一值的问题
2017/03/01 Javascript
完美解决浏览器跨域的几种方法(汇总)
2017/05/08 Javascript
详解Vue中过度动画效果应用
2017/05/25 Javascript
利用types增强vscode中js代码提示功能详解
2017/07/07 Javascript
解决ionic和angular上拉加载的问题
2017/08/03 Javascript
JS实现留言板功能[楼层效果展示]
2017/12/27 Javascript
AngularJS标签页tab选项卡切换功能经典实例详解
2018/05/16 Javascript
js根据json数据中的某一个属性来给数据分组的方法
2018/10/08 Javascript
微信小程序自定义键盘 内部虚拟支付
2018/12/20 Javascript
详解vuex持久化插件解决浏览器刷新数据消失问题
2019/04/15 Javascript
微信小程序收货地址API兼容低版本解决方法
2019/05/18 Javascript
vue 组件内获取actions的response方式
2019/11/08 Javascript
使用Python脚本将Bing的每日图片作为桌面的教程
2015/05/04 Python
python获得文件创建时间和修改时间的方法
2015/06/30 Python
基于Python Shell获取hostname和fqdn释疑
2016/01/25 Python
基于Python实现通过微信搜索功能查看谁把你删除了
2016/01/27 Python
Python多层装饰器用法实例分析
2018/02/09 Python
python获取全国城市pm2.5、臭氧等空气质量过程解析
2019/10/12 Python
Crabtree & Evelyn英国官网:瑰珀翠护手霜、香水、沐浴和身体护理
2018/04/26 全球购物
韩国最大的购物网站:Gmarket
2019/06/20 全球购物
俄罗斯首家面向中国消费者的一站式购物网站:Wruru
2020/05/08 全球购物
工艺工程师岗位职责
2014/03/04 职场文书
股指期货心得体会
2014/09/13 职场文书
亲戚关系证明
2015/06/24 职场文书
班干部竞选演讲稿(精选5篇)
2019/09/24 职场文书
python munch库的使用解析
2021/05/25 Python
python异步的ASGI与Fast Api实现
2021/07/16 Python
Oracle 死锁的检测查询及处理
2021/09/25 Oracle