Cum Imbunatatim Vanzarile Online...

2014-07-01 Thread Iulian POP
( http://client.campaignsender.ro/wb.php?p=38h/2zs/rs/8w1/1jp/rs )Click here to forward this email to a friend ( http://client.campaignsender.ro/wb.php?p=38h/2zs/rs/8w1/1jp/rs ) ( http://client.campaignsender.ro/wb.php?p=38h/2zs/rs/8w1/1jp/rs ) (

What did option maxconn mean in keyword server? will it cause 503 status?

2014-07-01 Thread Jie Jin
Hi, all Here is the partial of the haproxy.cfg backend receivers mode http balance roundrobin server s0 172.16.0.202:7700 check maxconn 180 server s1 172.16.0.202:7711 check maxconn 180 I add an option maxconn after keyword server. When haproxy face high volume of requests (about 2

Client Certificate

2014-07-01 Thread Martin van Diemen
Hi, I'm trying to configure HAProxy so that on one specific domain users authenticate with a SSL Client certificate. The Load Balancer has one public IP address and has a frontend configured which is bind to port 443: bind *:443 ssl crt ./haproxy/ I selected the correct backend as followed:

RE: Client Certificate

2014-07-01 Thread Lukas Tribus
Hi Martin, Hi,    I'm trying to configure HAProxy so that on one specific domain users  authenticate with a SSL Client certificate.    The Load Balancer has one public IP address and has a frontend  configured which is bind to port 443:  bind *:443 ssl crt ./haproxy/    I selected the

RE: What did option maxconn mean in keyword server? will it cause 503 status?

2014-07-01 Thread Lukas Tribus
Hi, I add an option maxconn after keyword server. When haproxy face  high volume of requests (about 2 concurrent requests), it return  many 503 page Of course it will. You would like to serve 2 concurrent requests, but your 6 servers only support 180 concurrent connections each.

RE: Build failed on OS X

2014-07-01 Thread Lukas Tribus
Hi, Hi, list Tried to build with USE_STATIC_PCRE=1 but failed, error: .. ebtree/ebistree.o -L/usr/local/Cellar/pcre/8.35/lib -Wl,-Bstatic -lpcreposix -lpcre -Wl,-Bdynamic ld: unknown option: -Bstatic clang: error: linker command failed with exit code 1 (use -v to see invocation)

RE: single or many haproxy instances

2014-07-01 Thread Justin Franks
Not sure why you would run multiple HAProxy in one node. I don't understand what you want to do. But... Look into using Consul to help load balance/cluster your HAProxy instances. That is what we are doing. Simple and works great. Think of Consul as a Global load balancing service that works

Re: single or many haproxy instances

2014-07-01 Thread Buckholz, Zachary
My understanding, and I could very well be wrong. Is that HAProxy is not SMP aware, it's single threaded and will not automatically take advantage of systems with multiple CPU's or cores. Other than the OS scheduler moving things around. Running multiple instances allows you to peg each instance

Using the socket interface to access ACLs

2014-07-01 Thread William Jimenez
Hello I am trying to modify ACLs via the socket interface. When I try to do something like 'get acl', I get an error: Missing ACL identifier and/or key. How do I find the ACL identifier or key for a specific ACL? I see the list of ACLs when i do a 'show acl', but unsure which of these values is

Re: Using the socket interface to access ACLs

2014-07-01 Thread Baptiste
On Tue, Jul 1, 2014 at 10:54 PM, William Jimenez william.jime...@itsoninc.com wrote: Hello I am trying to modify ACLs via the socket interface. When I try to do something like 'get acl', I get an error: Missing ACL identifier and/or key. How do I find the ACL identifier or key for a

Re: Using the socket interface to access ACLs

2014-07-01 Thread William Jimenez
Hi Baptiste, thank you for the response. I'm afraid I still don't follow. Say I have the an ACL that I want to toggle from its current state (as defined in the flat file) to 'always_false'. I can see it exists from the output of the 'show acl' command: # irc://chat.freenode.net:6667/# id (file)

Re: Using the socket interface to access ACLs

2014-07-01 Thread Baptiste
On Tue, Jul 1, 2014 at 11:16 PM, William Jimenez william.jime...@itsoninc.com wrote: Hi Baptiste, thank you for the response. I'm afraid I still don't follow. Say I have the an ACL that I want to toggle from its current state (as defined in the flat file) to 'always_false'. I can see it exists

Re: Using the socket interface to access ACLs

2014-07-01 Thread William Jimenez
Hi Baptiste I tried: # haproxyctl del acl myacl This command expects two parameters: ACL identifier and key. then i tried this # haproxyctl del acl myacl 0 Unknown map identifier. Please use #id or file. as well as the inverse ('0 myacl') I do see the acl listed though: # haproxyctl

Re: Issue with ssl_c_sha1

2014-07-01 Thread Yumerefendi, Aydan
Willy, Thanks for you help. Your suggestion worked! What tripped me was the lack of an example involving ssl_c_sha1 in the documentation. The easiest way to improve would be to the line you sent me to the list of other SSL examples. Thanks, ‹aydan On 5/28/14, 5:47 PM, Willy Tarreau w...@1wt.eu

dns resoluton and caching

2014-07-01 Thread Yumerefendi, Aydan
We are using haproxy to route traffic to several AWS services that are behind an ELB and noticed the following behavior: - haproxy resolves the ELB address at startup and routes traffic just fine (not sure if haproxy uses the first IP or all resolved IPs and round-robins between them, though)

Re: What did option maxconn mean in keyword server? will it cause 503 status?

2014-07-01 Thread Jie Jin
Hi, Lukas Many thanks , you are awesome. It's my fault that did not read the documentation carefully. I enlarged the timeout queue. No 503 page returned, but the total sessions in frontend accumulated quickly, which means most of the requests are queued by haproxy. I will try to add more