On Wednesday 21 of September 2011 17:30:05 Nick Chalk wrote:
> Afternoon all.
> 
> We have come across an interesting problem with HAProxy 1.5-dev7: with
> the config below, the proxy attempts to connect to a real server port
> of twice the virtual server's port.
> 
> listen v1
>       bind 192.168.69.32:80
>       mode http
>       balance leastconn
>       server backup 127.0.0.1:9081 backup
>       option httpclose
>       option redispatch
>       option abortonclose
>       maxconn 40000
>       log global
>       option httplog
>       server r41 192.168.68.41  weight 1  check port 80  inter 2000  rise 2
>  fall 3 minconn 0  maxconn 0

Try replacing this line with:

server r41 192.168.68.41:80  weight 1 check inter 2000  rise 2 fall 3 minconn 0 
maxconn 0

Best regards, Brane

Reply via email to