www.formilux.org

2015-04-16 Thread John | SMM Pty Ltd
Hi, We specialise in social-media-management and work with many companies like yours by taking care of their Facebook, Twitter, Linkedin and other relevant social media sites. Exposure to these sites can be vital to the health of your business and the right marketing campaign can

HAP 1.5.11 and SSL

2015-04-16 Thread Phil Daws
Hello all! Long time no post but have lost some of my old notes and hitting an issue with SSL. In my haproxy.conf I have: frontend frontend-zimbra-zwc-http mode http bind 10.1.8.73:80 redirect scheme https if !{ ssl_fc } frontend frontend-zimbra-zwc-https bind

Re: HAP 1.5.11 and SSL

2015-04-16 Thread David Coulson
Add 'ssl' to your server line so it uses ssl for the backend connection. Sent from my iPhone On Apr 16, 2015, at 12:12 PM, Phil Daws ux...@splatnix.net wrote: Hello all! Long time no post but have lost some of my old notes and hitting an issue with SSL. In my haproxy.conf I have:

Re: gpc0 got increased twice when used with WAIT_END

2015-04-16 Thread Ruoshan Huang
Oops, forgot to provide the version. it’s `HA-Proxy version 1.5.11 2015/01/31` On Apr 17, 2015, at 00:41, Ruoshan Huang ruoshan.hu...@gmail.com wrote: hi, I have this demo configuration below. I try to reject the request when http_req_rate is too high, and re-accept the request from

Backend connection resets in http-heep-alive mode

2015-04-16 Thread Michał Ślizak
Hi, I'm experiencing a problem with backend TCP connections being reset [RST+ACK] by HAProxy after serving one HTTP request and receiving the [ACK] for the HTTP response. Delay between backend's [ACK] and haproxy's [RST+ACK] seems random, ranging from single seconds to several minutes. What I

Re: HAProxy 1.4.18 performance issue

2015-04-16 Thread Michał Ślizak
On Mon, Apr 13, 2015 at 6:09 PM, Lukas Tribus luky...@hotmail.com wrote: On Mon, Apr 13, 2015 at 4:58 PM, Lukas Tribus luky...@hotmail.commailto:luky...@hotmail.com wrote: Hi, I'm experiencing latency problems while running HAProxy 1.4.18. Our backend servers reply to HAProxy almost

switching backends based on boolean value

2015-04-16 Thread Dennis Jacobfeuerborn
Hi, I'm trying to find the best way to toggle maintenance mode for a site. I have a regular and a maintenance backend defined an I'm using something like: frontend: acl is_maintenance always_false use_backend back-maintenance if is_maintenance default_backend back Since I saw some ACL

RE: Backend connection resets in http-heep-alive mode

2015-04-16 Thread Lukas Tribus
Hi, I'm experiencing a problem with backend TCP connections being reset [RST+ACK] by HAProxy after serving one HTTP request and receiving the [ACK] for the HTTP response. Delay between backend's [ACK] and haproxy's [RST+ACK] seems random, ranging from single seconds to several minutes.

haproxy / mysql can't bind to socket

2015-04-16 Thread Tim Dunphy
Hello, I'm trying to get haproxy to work with two database servers. But I'm getting stuck on an error when trying to start up haproxy. Saying that it can't bind to the socket. [root@aoadbld00036la haproxy]# service haproxy start Starting haproxy: [ALERT] 105/160506 (29040) : Starting proxy

[PATCH] CLEANUP/MINOR: doc: Fix L4TOUT typo in documentation

2015-04-16 Thread Jason Harvey
Please see attached. Thanks! Jason commit e92c04517a8c7418024566c2dfec65c55a9a9b53 Author: Jason Harvey alie...@gmail.com Date: Thu Apr 16 11:01:06 2015 -0800 Fix documentation typo. L4TMOUT-L4TOUT. diff --git a/doc/configuration.txt b/doc/configuration.txt index 9a04200..c7a62b7 100644

Re: haproxy / mysql can't bind to socket

2015-04-16 Thread David Coulson
You want to reconfigure your MySQL server to only bind to the IP address you want it to, rather than to *:3306 so your haproxy instance can bind to 3306 on the VIP. On 4/16/15 4:19 PM, Tim Dunphy wrote: Hello, I'm trying to get haproxy to work with two database servers. But I'm getting

Re: Stick tables and counters persistence

2015-04-16 Thread Igor Cicimov
On Fri, Apr 17, 2015 at 2:26 PM, Dennis Jacobfeuerborn denni...@conversis.de wrote: On 17.04.2015 02:12, Igor Cicimov wrote: Hi all, Just a quick one, are the stick tables and counters persisted on haproxy 1.5.11 reload/restart? With nbproc=1 yes as long as you use a peers section

Re: Stick tables and counters persistence

2015-04-16 Thread Dennis Jacobfeuerborn
On 17.04.2015 02:12, Igor Cicimov wrote: Hi all, Just a quick one, are the stick tables and counters persisted on haproxy 1.5.11 reload/restart? With nbproc=1 yes as long as you use a peers section that contains the local host as an entry. Regards, Dennis

Stick tables and counters persistence

2015-04-16 Thread Igor Cicimov
Hi all, Just a quick one, are the stick tables and counters persisted on haproxy 1.5.11 reload/restart? Thanks, Igor

Re: switching backends based on boolean value

2015-04-16 Thread Igor Cicimov
On Fri, Apr 17, 2015 at 3:26 AM, Dennis Jacobfeuerborn denni...@conversis.de wrote: Hi, I'm trying to find the best way to toggle maintenance mode for a site. I have a regular and a maintenance backend defined an I'm using something like: frontend: acl is_maintenance always_false

Re: switching backends based on boolean value

2015-04-16 Thread Dennis Jacobfeuerborn
On 17.04.2015 00:51, Igor Cicimov wrote: On Fri, Apr 17, 2015 at 3:26 AM, Dennis Jacobfeuerborn denni...@conversis.de wrote: Hi, I'm trying to find the best way to toggle maintenance mode for a site. I have a regular and a maintenance backend defined an I'm using something like: