나는 Haproxy 1.5.4를 사용하고 있습니다. 각 요청마다 다른 백엔드를 사용하도록 haproxy를 구성하고 싶습니다. 이렇게하면 각 요청마다 다른 백엔드가 사용되도록하고 싶습니다. 에 따라,각 요청마다 다른 백엔드를 사용하도록 haproxy를 구성하는 방법
라운드 로빈 각 서버는 회전에 사용되는
:
global
daemon
maxconn 500000
nbproc 2
log 127.0.0.1 local0 info
defaults
mode tcp
timeout connect 50000ms
timeout client 500000ms
timeout server 500000ms
timeout check 5s
timeout tunnel 50000ms
option redispatch
listen httptat *:3310
mode http
stats enable
stats refresh 5s
stats uri /httpstat
stats realm HTTPS proxy stats
stats auth https:xxxxxxxxxxx
listen HTTPS *:5008
mode tcp
#maxconn 50000
balance leastconn
server backend1 xxx.xxx.xxx.xxx:125 check
server backend1 xxx.xxx.xxx.xxx:126 check
server backend1 xxx.xxx.xxx.xxx:127 check
server backend1 xxx.xxx.xxx.xxx:128 check
server backend1 xxx.xxx.xxx.xxx:129 check
server backend1 xxx.xxx.xxx.xxx:130 check
......
답장을 보내 주셔서 감사합니다. 나는 그것을 시도하고 볼 것이다 .... – Lamboo