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

被折叠的 条评论
为什么被折叠?



