Re: tcp-check not checking

2014-10-02 Thread Willy Tarreau
On Fri, Sep 19, 2014 at 09:04:08PM +0200, Dennis Jacobfeuerborn wrote: Hi, indeed after removing the option tcp-check line the checks now work as expected. Thanks for the pointer. Hey guys, no, that's a bug. Look at what is written in the documentation (which should always be the reference to

Re: tcp-check not checking

2014-10-02 Thread Willy Tarreau
On Thu, Oct 02, 2014 at 11:29:27AM +0200, Willy Tarreau wrote: On Fri, Sep 19, 2014 at 09:04:08PM +0200, Dennis Jacobfeuerborn wrote: Hi, indeed after removing the option tcp-check line the checks now work as expected. Thanks for the pointer. Hey guys, no, that's a bug. Look at what is

tcp-check not checking

2014-09-19 Thread Dennis Jacobfeuerborn
Hi, I just configured the load-balacing for systems that are yet to be installed yet according to the tcp-check of haproxy these systems are all available. This is the backend config I'm using right now: backend back-api bind-process 1 option tcp-check mode http balance roundrobin

Re: tcp-check not checking

2014-09-19 Thread PiBa-NL
Hi Dennis, option tcp-check that requires more send/expect options to actually perform L7 checks. For a simple L4 check remove the line completely or add : tcp-check connect You might also want to look at option httpchk. Which is more friendly for basic http checks. Greets PiBa-NL Dennis

Re: tcp-check not checking

2014-09-19 Thread Dennis Jacobfeuerborn
Hi, indeed after removing the option tcp-check line the checks now work as expected. Thanks for the pointer. Regards, Dennis On 19.09.2014 20:02, PiBa-NL wrote: Hi Dennis, option tcp-check that requires more send/expect options to actually perform L7 checks. For a simple L4 check remove