我是 haproxy 的新手,想知道是否有人可以确认以下配置是否有效?实际上,我想在多个端口上对两台服务器进行负载平衡。
<snippet>
Listen mybackendLB
bind 10.6.200.14:555,10.6.200.14:8009,10.6.200.14:443
mode tcp
balance roundrobin
option httpchk "/test.html"
server app1 192.168.0.20:555 check port 8008
server app1 192.168.0.20:8009 check port 8008
server app1 192.168.0.20:443 check port 8008
server app2 192.168.0.21:555 check port 8008
server app2 192.168.0.21:8009 check port 8008
server app2 192.168.0.21:443 check port 8008
<snippet>
无论如何,这会是一个更好的选择吗?
<snippet>
Listen mybackendLB
bind 10.6.200.14:555,10.6.200.14:8009,10.6.200.14:443
mode tcp
balance roundrobin
option httpchk "/test.html"
server app1 192.168.0.20 check port 8008
server app2 192.168.0.21 check port 8008
<snippet>