haproxy + redis 负载均衡

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

你可能感兴趣的:(haproxy + redis 负载均衡)