博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
haproxy配置监控redis主备切换(转)
阅读量:5825 次
发布时间:2019-06-18

本文共 573 字,大约阅读时间需要 1 分钟。

环境前提:
    redis sentinel配置,三台主机,且配置运行良好
    
 

配置文件中添加:

frontend ft_redis
 bind 0.0.0.0:6379 name redis
 default_backend bk_redis
 
backend bk_redis
 option tcp-check
 tcp-check connect
 tcp-check send PING\r\n
 tcp-check expect string +PONG
 tcp-check send info\ replication\r\n
 tcp-check expect string role:master
 tcp-check send QUIT\r\n
 tcp-check expect string +OK
 server R1 10.118.36.10:6379 check inter 1s
 server R2 10.118.36.74:6379 check inter 1s
 server R3 10.118.5.161:6379 check inter 1s
当结果如下所示,则表示成功,那么试着切换redis的master和slave吧
http://blog.csdn.net/gsying1474/article/details/49179651
你可能感兴趣的文章
SQL Server 排名函数
查看>>
Linux(Red Hat Linux 9)中关于程序的存放目录
查看>>
iptables详解(二)
查看>>
xenserver 虚机磁盘突破2TB限制
查看>>
ps抠树
查看>>
编辑php.ini配置文件
查看>>
Visual Studio 2017对xp的支持
查看>>
fadingEdge
查看>>
hello world
查看>>
php 文件操作
查看>>
Python开发(基础):列表List
查看>>
支付宝SDK官方下载-移动端、服务端各个平台通用
查看>>
Scala笔记整理(七):模式匹配和样例类
查看>>
DIV CSS遮罩层
查看>>
e1000 detected Tx Unit Hang
查看>>
Zabbix监控(十二):自动监控Linux端口
查看>>
Cubieboard自带的红外接收(IR)测试成功
查看>>
redis读取字符串类型的整数时会直接将其当做整数来处理
查看>>
JS_TAB鼠标点击切换特效
查看>>
MenuintroduceActivity
查看>>