haproxy + redis 负载均衡

本文详细介绍了如何在同物理机上配置Redis集群,并通过haproxy对外提供服务,包括haproxy配置文件的编写及启动脚本的实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

redis在同物理机上,6379 6380

haproxy对外服务端口2121

--------------------------------haproxy配置--------------------------

global 	maxconn 2
#quiet
nbproc 1
defaults 
timeout server 3s
timeout connect 3s
timeout client 3s
timeout http-request 3s
timeout queue 3s

#
#listen statusPage *:8021
#stats enable
#stats auth allchin:zxcvbnm
#stats uri /haproxy-stats

frontend redisEnter 
bind *:2121
default_backend cluster_redis

#redis
backend cluster_redis
mode tcp
#tption tcpka
balance static-rr	
server redis1 127.0.0.1:6379 weight 1  check inter 2s rise 2 fall 1
server redis1-backup 127.0.0.1:6380 weight 1 check inter 2s rise 2 fall 1

------------------------------haproxy 启动脚本-------------------------------

#!/bin/sh
haproxy -f haproxy8021.cfg

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值