URGENT

2015-01-27 Thread Alisha Macleod




Outstanding Inheritance.pdf
Description: Adobe PDF document


possible bug with CumReq info stat

2015-01-27 Thread Warren Turkal
The definition of the global.req_count at include/types/global.h line 109
is an unsigned int. The print code it treating it as a signed int. The
attached commit fixes that.

Also, is there an SSL protected location for fetching the haproxy git repo
whose cert is signed by a widespread CA? The haproxy.org site also seems to
be pretty slow for git cloning.

wt
-- 
Warren Turkal
commit 2f4e2480139fdd976d9e9edef3fd582d50f21027
Author: Warren Turkal 
Date:   Tue Jan 27 15:02:00 2015 -0800

Fix incorrect printf type.

The value is defined in include/types/global.h to be an unsigned int.
The type format in the printf is for a signed int. This eventually wraps
around.

diff --git a/src/dumpstats.c b/src/dumpstats.c
index 1070ff4..b616478 100644
--- a/src/dumpstats.c
+++ b/src/dumpstats.c
@@ -2492,7 +2492,7 @@ static int stats_dump_info_to_buffer(struct 
stream_interface *si)
 "Hard_maxconn: %d\n"
 "CurrConns: %d\n"
 "CumConns: %d\n"
-"CumReq: %d\n"
+"CumReq: %u\n"
 #ifdef USE_OPENSSL
 "MaxSslConns: %d\n"
 "CurrSslConns: %d\n"


Re: SPDY with Apache mod_spdy

2015-01-27 Thread CJ Ess
I'm under the impression that Haproxy doesn't speak SPDY natively so best
it can do for pass is through to a backend that does. If you use nginx to
terminate ssl and spdy, then you can use all the features of haproxy.


On Tue, Jan 27, 2015 at 1:21 PM, Erwin Schliske  wrote:

> Hello,
>
> actually I have the task to setup a system with Haproxy balancing a Apache
> with mod_spdy enabled. I don't have a problem with ssl-offloading, but I
> cannot find out how to serve spdy enabled clients. I have tried several
> howtos like
>
>
> http://www.igvita.com/2012/10/31/simple-spdy-and-npn-negotiation-with-haproxy/
>
> My config is:
>
> listen spdytest
>   modetcp
>   bind  X.X.X.X:443 ssl crt /etc/haproxy/ssl/example.com.pem
> no-sslv3 npn spdy/2
>   server   backend1 10.X.X.X:1443 ssl
>
> All tutorials I've found use Nginx as webserver, which can serve spdy
> without ssl. But this is not the case with Apache mod_spdy. It needs https
> as proto.
>
> Does someone have a hint what I'm doing wrong?
>
>
> Thanks.
>
>
> Regards,
> Erwin
>


Re: Problem with string negation in httpcheck-expect

2015-01-27 Thread Cyril Bonté

Hi Sébastien,

Le 27/01/2015 10:43, Sébastien ROHAUT a écrit :

To complete my answer, All of theses are working :
- Adding Connection: close header
- Moving to HTTP/1.0
- set the keepalive timeout to 0 in webserver configuration

HTTP/1.0 is not the best solution, because some webservers (jetty...)
return a Connection: keep-alive, as it's supported by the protocol.

But, the best thing to do should be to modify the way haproxy get the
content (for the health check) : check for the Content-Length, which is
the best solution.


OK thanks for your feedback.
Please keep the mailing list in CC when you reply ;-)




2015-01-27 7:22 GMT+01:00 Sébastien ROHAUT
mailto:sebastien.rohaut@gmail.com>>:

Cyril, we found the answer at the same time ! This is the keepalive.
And yes I think the doc should be updated.
It works if in my nginx configuration I disable keepalive for this
url or if I use http 1.0.

thank you

Sebastien

Le 26 janv. 2015 23:25, "Cyril Bonté" mailto:cyril.bo...@free.fr>> a écrit :

Hi Sébastien and Baptiste,

Le 26/01/2015 23:12, Baptiste a écrit :


Le 26 janv. 2015 13:43, "Sébastien ROHAUT"
mailto:sebastien.rohaut@gmail.com>
>>
a écrit :
  >  (...)
  > For the http-check, we want to test the value of
"healthStatus",
which can be "Healthy", "Unhealthy", "DegradedMode". Our
server must be
put out of the backend only if value is ""Unhealthy". So, we
tried this :
  >
  > http-check expect ! string "healthStatus":"Unhealthy"
  >
  > But it doesn't work as expected.
  > (...)

What does your option httpchk look like?


I was just making some tests.
I think this is happening because the buffer is not full and the
server didn't close the connection, which happens when the
server is using keep-alive.
As checks don't handle the HTTP connection type, haproxy is
waiting fore more data until a timeout occurs.

Sébastien, in order to prevent keep-alive, you should try with
one of this solution in your httpchk line :
- use HTTP/1.0
- or append \r\nConnection:\ close

Maybe this is something we should consider to add in the
documentation, or we can try to parse HTTP headers for a
Content-Length header or for chunks (it might require a lot of
work).
Or maybe we can transparently add the "Connection: close" header
to any http check sent from haproxy.

--
Cyril Bonté





--
Cyril Bonté



Re: Cookies not being set consistently

2015-01-27 Thread Baptiste
On Tue, Jan 27, 2015 at 2:03 AM, Aaron Golub  wrote:
>
>
>
>> Hi,
>>
>
> Sorry for re-posting...I didn't realize I had setn my previous question
> without a subject:
>
>> We're having a strange problem with cookies being set and I'm hoping
>> someone can help diagnose whats happening here.
>>
>>
>> So we our http and https frontends set up like this:
>>
>> #-
>> # "frontend" section describes a set of listening sockets accepting client
>> connections.
>> frontend PROD_aff_webfarm
>> #-
>>bind 10.2.0.201:80
>>mode http
>>   default_backend www_prodswap
>>   maxconn 4000
>>
>> #-
>> # "frontend" section describes a set of listening sockets accepting client
>> connections.
>> frontend PROD_www_https
>> #-
>>
>>bind 10.2.0.201:443
>>mode tcp
>>acl is_port_443 dst_port 443
>>use_backend PROD_https_swap if is_port_443
>>default_backend PROD_http
>>maxconn 4000
>>
>>
>>
>> These then use the following backends:
>>
>> #-
>> # "backend" section describes a set of servers to which the proxy will
>> connect to forward incoming connections.
>> backend www_prodswap
>> #-
>>mode http
>>option httplog
>>stats enable
>>stats auth :
>>balance roundrobin
>>cookie SWAP_SERVERID insert indirect nocache
>>option httpclose
>>option forwardfor
>>option httpchk /healthcheck.txt  # file on sprodswap1 and prodswap2
>>server prodswap1 10.2.0.50:80 cookie prodswap1 weight 50  check
>>server prodswap2 10.2.0.51:80 cookie prodswap2 weight 50  check
>>
>>
>> #-
>> #Added to use https on prodswap
>> backend PROD_https_swap
>> #-
>>mode tcp
>>option tcplog
>>balance roundrobin
>>stick-table type ip size 200k expire 30m
>>stick on src
>> server prodswap1 10.2.0.50:443
>> server prodswap2 10.2.0.51:443
>>
>>
>>
>> So far, so good...the SWAP_SERVERID cookies gets set fine.  Now...from
>> here, the servers at the www_prodswap and PROD_https_swap backends redirects
>> some of their traffic to these frontends using reverse proxy that is
>> configured in our paython site and effectively uses curl to access urls and
>> the delivers that data back out to the client:
>>
>>
>> #-
>> # "frontend" section describes a set of listening sockets accepting client
>> connections.
>> frontend PROD_rev_proxy_http
>> #-
>>bind 10.2.0.202:80
>>mode http
>>option  httplog
>>default_backend PROD_http
>>
>> #-
>> # "frontend" section describes a set of listening sockets accepting client
>> connections.
>> frontend PROD_rev_proxy_tcp
>> #-
>>bind 10.2.0.202:443
>>acl is_port_443 dst_port 443
>>mode tcp
>>use_backend PROD_https if is_port_443
>>default_backend PROD_http
>>
>> These front ends them direct traffic to the following backends:
>>
>> #-
>> # "backend" section describes a set of servers to which the proxy will
>> connect to forward incoming connections.
>> backend PROD_http
>> #-
>>mode http
>>option httplog
>>stats enable
>>stats auth :
>>balance roundrobin
>>stick on src table PROD_https
>>cookie PHP_SERVERID insert indirect nocache
>>option httpclose
>>option forwardfor
>>option httpchk /healthcheck.txt
>> server prod4 10.2.0.105:80 cookie prod4 weight 34 check
>> server prod5 10.2.0.106:80 cookie prod5 weight 33 check
>> server prod6 10.5.0.107:80 cookie prod6 weight 33 check
>>
>>
>> #-
>> backend PROD_https
>> #-
>>mode tcp
>>option tcplog
>>balance roundrobin
>>stick-table type ip size 200k expire 30m
>>stick on src
>>server prod4 10.2.0.105:443
>>server prod5 10.2.0.106:443
>>server prod6 10.5.0.107:443
>>
>>
>>
>> So here's the problemThe pages on the PROD_http/PROD_https load just
>> fine, but the  PHP_SERVERID cookie is only set intermittently.   Why would
>> that be?  Do I have the cookies settings configured incorrectly?  The reason
>> I ask is because we believe that these cookies settings are causing server
>> affinity to be lost.  Any insight into this would be greatly appreciated.
>>
>> Also...is it possible to  have cookies set for HTTPs as well and can it be
>> the same cookie as the http cookie?
>>
>> I'm currently using HAproxy1.4.
>>
>>
>> Thanks in advance!
>> Aaron
>> it_cont...@smartshoot.com
>> --
>>
>
> -
> If you received this communication by mistake, please don't forward it to
> 

Re: SPDY with Apache mod_spdy

2015-01-27 Thread Baptiste
On Tue, Jan 27, 2015 at 7:21 PM, Erwin Schliske
 wrote:
> Hello,
>
> actually I have the task to setup a system with Haproxy balancing a Apache
> with mod_spdy enabled. I don't have a problem with ssl-offloading, but I
> cannot find out how to serve spdy enabled clients. I have tried several
> howtos like
>
> http://www.igvita.com/2012/10/31/simple-spdy-and-npn-negotiation-with-haproxy/
>
> My config is:
>
> listen spdytest
>   modetcp
>   bind  X.X.X.X:443 ssl crt /etc/haproxy/ssl/example.com.pem
> no-sslv3 npn spdy/2
>   server   backend1 10.X.X.X:1443 ssl
>
> All tutorials I've found use Nginx as webserver, which can serve spdy
> without ssl. But this is not the case with Apache mod_spdy. It needs https
> as proto.
>
> Does someone have a hint what I'm doing wrong?
>
>
> Thanks.


Hi Erwin,

HAProxy does not send the ALPN (or NPN) SSL extension to the server
side with your configuration.
Simply failover to a SSL forward configuration:
 listen spdytest
   modetcp
   bind  X.X.X.X:443
   server   backend1 10.X.X.X:1443

Baptiste



SPDY with Apache mod_spdy

2015-01-27 Thread Erwin Schliske
Hello,

actually I have the task to setup a system with Haproxy balancing a Apache
with mod_spdy enabled. I don't have a problem with ssl-offloading, but I
cannot find out how to serve spdy enabled clients. I have tried several
howtos like

http://www.igvita.com/2012/10/31/simple-spdy-and-npn-negotiation-with-haproxy/

My config is:

listen spdytest
  modetcp
  bind  X.X.X.X:443 ssl crt /etc/haproxy/ssl/example.com.pem
no-sslv3 npn spdy/2
  server   backend1 10.X.X.X:1443 ssl

All tutorials I've found use Nginx as webserver, which can serve spdy
without ssl. But this is not the case with Apache mod_spdy. It needs https
as proto.

Does someone have a hint what I'm doing wrong?


Thanks.


Regards,
Erwin


RE: Url load balancer

2015-01-27 Thread mohammad Atiyat
And support on windows server 2008

 

Please consider your environmental responsibility before printing this e-mail

-

Mohammad Al-Atiyat|

TECHNICAL SUPPORT ENGINEER

ALCATEL LUCENT TECHNICAL SUPPORT-SMB|ASCOTEL |
Tel. +962 6 463 2444 | Mob. +962 777 383 000| Fax. +962 6 4650296|
P.O. Box 9895, Amman 11191, Jordan| www.ascotel.com.jo

  facebook  
 twitter

    

 

From: mohammad Atiyat [mailto:al_ati...@ascotel.com.jo] 
Sent: Tuesday, January 27, 2015 7:07 PM
To: 'Sean Decker'
Cc: 'haproxy@formilux.org'
Subject: RE: Url load balancer

 

Hi….

Thanks a lot.

 

can you advise me which type of apache can I use for URL load balancing:


Apache 2.4.10
or
Tomcat 6,7,8……

 

 

BR,

 

 

Please consider your environmental responsibility before printing this e-mail

-

Mohammad Al-Atiyat|

TECHNICAL SUPPORT ENGINEER

ALCATEL LUCENT TECHNICAL SUPPORT-SMB|ASCOTEL |
Tel. +962 6 463 2444 | Mob. +962 777 383 000| Fax. +962 6 4650296|
P.O. Box 9895, Amman 11191, Jordan| www.ascotel.com.jo

  facebook  
 twitter

    

 

From: Sean Decker [mailto:sean.a.dec...@gmail.com] 
Sent: Tuesday, January 27, 2015 6:52 PM
Cc: mohammad Atiyat; haproxy@formilux.org
Subject: Re: Url load balancer

 

Mohammad,

 

HAProxy is not supported on Windows. Please see the list of support platforms 
at the link Yuan has shared in both replies to your questions. If you don't 
have Unix/Linux experience you can look to use one of the Appliances referenced 
at http://www.haproxy.org/#supp

 

On Tue, Jan 27, 2015 at 9:58 AM, Yuan Long  wrote:

Sorry, but I don't know.

http://www.haproxy.org/#plat

 




Regards,

Long Wu Yuan 龙 武 缘 
Sr. Linux Engineer 高级工程师
ChinaNetCloud 云络网络科技(上海)有限公司 | www.ChinaNetCloud.com1238 Xietu Lu, X2 Space 
1-601, Shanghai, China | 中国上海市徐汇区斜土路1238号X2空 间1-601室

24x7 Support Hotline: +86-400-618-0024   | Office Tel: 
+86-(21)-6422-1946  
We are hiring! http://careers.chinanetcloud.com  | Customer Portal - 
https://customer-portal.service.chinanetcloud.com/


 

On Tue, Jan 27, 2015 at 9:54 PM, mohammad Atiyat  
wrote:

Hello…

 

Can you help how to install this on the windwos and how configure the conf file 
as my request?

BR

 

Please consider your environmental responsibility before printing this e-mail

-

Mohammad Al-Atiyat|

TECHNICAL SUPPORT ENGINEER

ALCATEL LUCENT TECHNICAL SUPPORT-SMB|ASCOTEL |
Tel. +962 6 463 2444   | Mob. +962 777 383 000| 
Fax. +962 6 4650296  |
P.O. Box 9895, Amman 11191, Jordan| www.ascotel.com.jo

  facebook  
 twitter

    

 

From: Yuan Long [mailto:yuan.l...@chinanetcloud.com] 
Sent: Tuesday, January 27, 2015 12:15 PM
To: mohammad Atiyat
Cc: haproxy@formilux.org
Subject: Re: Url load balancer

 

http://www.haproxy.org/#plat




Regards,

Long Wu Yuan 龙 武 缘 
Sr. Linux Engineer 高级工程师
ChinaNetCloud 云络网络科技(上海)有限公司 | www.ChinaNetCloud.com1238 Xietu Lu, X2 Space 
1-601, Shanghai, China | 中国上海市徐汇区斜土路1238号X2空 间1-601室

24x7 Support Hotline: +86-400-618-0024   | Office Tel: 
+86-(21)-6422-1946  
We are hiring! http://careers.chinanetcloud.com  | Customer Portal - 
https://customer-portal.service.chinanetcloud.com/


 

On Tue, Jan 27, 2015 at 3:37 PM, mohammad Atiyat  
wrote:

Dear support,

 

I want to test HAproxy on windows server 2008R2?

The following is an example configuration section that is needed for setting up 
an Apache 

 load balancer for a three-instance :

 

we need to Configure URL  load balancer to balance traffic to 3 instances as 
below ;

 

ProxyPass /cluster balancer://gircom.ascotel.local



BalancerMember http://gir-pr.  ascotel.local:8889 

BalancerMember http://gir-pr.ascotel.local:8890 

 BalancerMember http://gir-bak.ascotel.local:8889 

BalancerMember  http://gir-bak.ascotel.local:8890



 

 

BR

 

Please consider your environmental responsibility before printing this e-mail

-

Mohammad Al-Atiyat|

TECHNICAL SUPPORT ENGINEER

ALCATEL LUCENT TECHNICAL SUPPORT-SMB|ASCOTEL |
Tel. +962 6 463 2444   | Mob. +962 777 383 000| 
Fax. +962 6 4650296  |
P.O. Box 9895, Amman 11191, Jordan| www.ascotel.com.jo

 

RE: Url load balancer

2015-01-27 Thread mohammad Atiyat
Hi….

Thanks a lot.

 

can you advise me which type of apache can I use for URL load balancing:


Apache 2.4.10
or
Tomcat 6,7,8……

 

 

BR,

 

 

Please consider your environmental responsibility before printing this e-mail

-

Mohammad Al-Atiyat|

TECHNICAL SUPPORT ENGINEER

ALCATEL LUCENT TECHNICAL SUPPORT-SMB|ASCOTEL |
Tel. +962 6 463 2444 | Mob. +962 777 383 000| Fax. +962 6 4650296|
P.O. Box 9895, Amman 11191, Jordan| www.ascotel.com.jo

  facebook  
 twitter

    

 

From: Sean Decker [mailto:sean.a.dec...@gmail.com] 
Sent: Tuesday, January 27, 2015 6:52 PM
Cc: mohammad Atiyat; haproxy@formilux.org
Subject: Re: Url load balancer

 

Mohammad,

 

HAProxy is not supported on Windows. Please see the list of support platforms 
at the link Yuan has shared in both replies to your questions. If you don't 
have Unix/Linux experience you can look to use one of the Appliances referenced 
at http://www.haproxy.org/#supp

 

On Tue, Jan 27, 2015 at 9:58 AM, Yuan Long  wrote:

Sorry, but I don't know.

http://www.haproxy.org/#plat

 




Regards,

Long Wu Yuan 龙 武 缘 
Sr. Linux Engineer 高级工程师
ChinaNetCloud 云络网络科技(上海)有限公司 | www.ChinaNetCloud.com1238 Xietu Lu, X2 Space 
1-601, Shanghai, China | 中国上海市徐汇区斜土路1238号X2空 间1-601室

24x7 Support Hotline: +86-400-618-0024   | Office Tel: 
+86-(21)-6422-1946  
We are hiring! http://careers.chinanetcloud.com  | Customer Portal - 
https://customer-portal.service.chinanetcloud.com/


 

On Tue, Jan 27, 2015 at 9:54 PM, mohammad Atiyat  
wrote:

Hello…

 

Can you help how to install this on the windwos and how configure the conf file 
as my request?

BR

 

Please consider your environmental responsibility before printing this e-mail

-

Mohammad Al-Atiyat|

TECHNICAL SUPPORT ENGINEER

ALCATEL LUCENT TECHNICAL SUPPORT-SMB|ASCOTEL |
Tel. +962 6 463 2444   | Mob. +962 777 383 000| 
Fax. +962 6 4650296  |
P.O. Box 9895, Amman 11191, Jordan| www.ascotel.com.jo

  facebook  
 twitter

    

 

From: Yuan Long [mailto:yuan.l...@chinanetcloud.com] 
Sent: Tuesday, January 27, 2015 12:15 PM
To: mohammad Atiyat
Cc: haproxy@formilux.org
Subject: Re: Url load balancer

 

http://www.haproxy.org/#plat




Regards,

Long Wu Yuan 龙 武 缘 
Sr. Linux Engineer 高级工程师
ChinaNetCloud 云络网络科技(上海)有限公司 | www.ChinaNetCloud.com1238 Xietu Lu, X2 Space 
1-601, Shanghai, China | 中国上海市徐汇区斜土路1238号X2空 间1-601室

24x7 Support Hotline: +86-400-618-0024   | Office Tel: 
+86-(21)-6422-1946  
We are hiring! http://careers.chinanetcloud.com  | Customer Portal - 
https://customer-portal.service.chinanetcloud.com/


 

On Tue, Jan 27, 2015 at 3:37 PM, mohammad Atiyat  
wrote:

Dear support,

 

I want to test HAproxy on windows server 2008R2?

The following is an example configuration section that is needed for setting up 
an Apache 

 load balancer for a three-instance :

 

we need to Configure URL  load balancer to balance traffic to 3 instances as 
below ;

 

ProxyPass /cluster balancer://gircom.ascotel.local



BalancerMember http://gir-pr.  ascotel.local:8889 

BalancerMember http://gir-pr.ascotel.local:8890 

 BalancerMember http://gir-bak.ascotel.local:8889 

BalancerMember  http://gir-bak.ascotel.local:8890



 

 

BR

 

Please consider your environmental responsibility before printing this e-mail

-

Mohammad Al-Atiyat|

TECHNICAL SUPPORT ENGINEER

ALCATEL LUCENT TECHNICAL SUPPORT-SMB|ASCOTEL |
Tel. +962 6 463 2444   | Mob. +962 777 383 000| 
Fax. +962 6 4650296  |
P.O. Box 9895, Amman 11191, Jordan| www.ascotel.com.jo

  facebook  
 twitter

    

 

 

 





 

-- 

--- "The obscure we see eventually, the completely apparent takes longer"  
Edward R. Murrow



Re: Url load balancer

2015-01-27 Thread Sean Decker
Mohammad,

HAProxy is not supported on Windows. Please see the list of support
platforms at the link Yuan has shared in both replies to your questions. If
you don't have Unix/Linux experience you can look to use one of the
Appliances referenced at http://www.haproxy.org/#supp

On Tue, Jan 27, 2015 at 9:58 AM, Yuan Long 
wrote:

> Sorry, but I don't know.
> http://www.haproxy.org/#plat
>
>
> Regards,
>
> 
> Long Wu Yuan 龙 武 缘
> Sr. Linux Engineer 高级工程师
> ChinaNetCloud 云络网络科技(上海)有限公司 | www.ChinaNetCloud.com1238 Xietu Lu, X2
> Space 1-601, Shanghai, China | 中国上海市徐汇区斜土路1238号X2空 间1-601室
>
> 24x7 Support Hotline: +86-400-618-0024 | Office Tel: +86-(21)-6422-1946
> We are hiring! http://careers.chinanetcloud.com  | Customer Portal -
> https://customer-portal.service.chinanetcloud.com/
>
> 
>
>
> On Tue, Jan 27, 2015 at 9:54 PM, mohammad Atiyat  > wrote:
>
>> Hello…
>>
>>
>>
>> Can you help how to install this on the windwos and how configure the
>> conf file as my request?
>>
>> BR
>>
>>
>>
>> *Please consider your environmental responsibility before printing this
>> e-mail*
>>
>>
>> *-*
>>
>> *Mohammad Al-Atiyat**|*
>>
>> TECHNICAL SUPPORT ENGINEER
>>
>> ALCATEL LUCENT TECHNICAL SUPPORT-SMB*|**ASCOTEL* *|*
>> *Tel. +962 6 463 2444 <%2B962%206%20463%202444>* *|** Mob. +962 777 383
>> 000**|** Fax. +962 6 4650296 <%2B962%206%204650296>**|*
>> *P.O. Box 9895,* *Amman* *11191, Jordan**|* www.ascotel.com.jo
>>
>> [image: facebook]  [image:
>> twitter] 
>>
>>
>>
>>
>>
>> *From:* Yuan Long [mailto:yuan.l...@chinanetcloud.com]
>> *Sent:* Tuesday, January 27, 2015 12:15 PM
>> *To:* mohammad Atiyat
>> *Cc:* haproxy@formilux.org
>> *Subject:* Re: Url load balancer
>>
>>
>>
>> http://www.haproxy.org/#plat
>>
>>
>> Regards,
>>
>> 
>> Long Wu Yuan 龙 武 缘
>> Sr. Linux Engineer 高级工程师
>> ChinaNetCloud 云络网络科技(上海)有限公司 | www.ChinaNetCloud.com1238 Xietu Lu, X2
>> Space 1-601, Shanghai, China | 中国上海市徐汇区斜土路1238号X2空 间1-601室
>>
>> 24x7 Support Hotline: +86-400-618-0024 | Office Tel: +86-(21)-6422-1946
>> We are hiring! http://careers.chinanetcloud.com  | Customer Portal -
>> https://customer-portal.service.chinanetcloud.com/
>>
>> 
>>
>>
>>
>> On Tue, Jan 27, 2015 at 3:37 PM, mohammad Atiyat <
>> al_ati...@ascotel.com.jo> wrote:
>>
>> Dear support,
>>
>>
>>
>> I want to test HAproxy on windows server 2008R2?
>>
>> The following is an example configuration section that is needed for
>> setting up an Apache
>>
>>  load balancer for a three-instance :
>>
>>
>>
>> we need to Configure URL  load balancer to balance traffic to 3 instances
>> as below ;
>>
>>
>>
>> ProxyPass /cluster balancer://gircom.ascotel.local
>>
>> 
>>
>> BalancerMember http://gir-pr.  ascotel.local:8889
>>
>> BalancerMember http://gir-pr.ascotel.local:8890
>>
>>  BalancerMember http://gir-bak.ascotel.local:8889
>>
>> BalancerMember  http://gir-bak.ascotel.local:8890
>>
>> 
>>
>>
>>
>>
>>
>> BR
>>
>>
>>
>> *Please consider your environmental responsibility before printing this
>> e-mail*
>>
>>
>> *-*
>>
>> *Mohammad Al-Atiyat**|*
>>
>> TECHNICAL SUPPORT ENGINEER
>>
>> ALCATEL LUCENT TECHNICAL SUPPORT-SMB*|**ASCOTEL* *|*
>> *Tel. +962 6 463 2444 <%2B962%206%20463%202444>* *|** Mob. +962 777 383
>> 000**|** Fax. +962 6 4650296 <%2B962%206%204650296>**|*
>> *P.O. Box 9895,* *Amman* *11191, Jordan**|* www.ascotel.com.jo
>>
>> [image: facebook]  [image:
>> twitter] 
>>
>>
>>
>>
>>
>>
>>
>
>


-- 
--- "The obscure we see eventually, the completely apparent takes longer"
 Edward R. Murrow


Profitez des soldes jusqu'à moins 70 pourcent

2015-01-27 Thread Alexandre Turpault par PFL

C'est les soldes ! Jusqu'à -70 pour cent.
 [http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33119-T.html
ce message ne s'affiche pas correctement,  visualisez la version en ligne.
[http://link.transiping.fr/eccm2/D187124120-c7ccb432add73739a07ec02a1494abce-944-51-637.html]

[http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33120-T.html]
[http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33120-T.html]
[http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33121-T.html]
[http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33122-T.html]
[http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33123-T.html]
[http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33124-T.html]
[http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33125-T.html
profiter de cette offre,
merci de valider votre adresse :
[http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33126-T.html
[http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33127-T.html
validant, j’accepte de recevoir par mail les offres promotionnelles,
avant-premières et actualités d’Alexandre Turpault
[http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33120-T.html]
[http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33128-T.html]
[http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33129-T.html]
[http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33130-T.html
PALAZZO
Drap 240x300 [http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33128-T.html]
173,00€
 [http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33128-T.html]
95,76€
 [http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33131-T.html
MONTAIGNE
Plaid 240x220 [http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33129-T.html]
249,00€
 [http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33129-T.html]
174,30€
 [http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33132-T.html
VIVIENNE
Drap 240x300 [http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33133-T.html)]
144,00€
 [http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33133-T.html)]
90,00€
 [http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33133-T.html)]
[http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33133-T.html)]
[http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33134-T.html]
[http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33135-T.html
VIVIENNE
Taie 65x65 [http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33133-T.html)]
63,00€
 [http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&urlredir=http://link.transiping.fr/eccm2/L187124120-944-33133-T.html)]
47,76€
 [http://link.transiping.fr/eccm2/L187124120-944-33118-T.html
Name%%&p=&cp=&source=R2J&

Re: Url load balancer

2015-01-27 Thread Yuan Long
Sorry, but I don't know.
http://www.haproxy.org/#plat


Regards,

Long Wu Yuan 龙 武 缘
Sr. Linux Engineer 高级工程师
ChinaNetCloud 云络网络科技(上海)有限公司 | www.ChinaNetCloud.com1238 Xietu Lu, X2 Space
1-601, Shanghai, China | 中国上海市徐汇区斜土路1238号X2空 间1-601室

24x7 Support Hotline: +86-400-618-0024 | Office Tel: +86-(21)-6422-1946
We are hiring! http://careers.chinanetcloud.com  | Customer Portal -
https://customer-portal.service.chinanetcloud.com/



On Tue, Jan 27, 2015 at 9:54 PM, mohammad Atiyat 
wrote:

> Hello…
>
>
>
> Can you help how to install this on the windwos and how configure the conf
> file as my request?
>
> BR
>
>
>
> *Please consider your environmental responsibility before printing this
> e-mail*
>
>
> *-*
>
> *Mohammad Al-Atiyat**|*
>
> TECHNICAL SUPPORT ENGINEER
>
> ALCATEL LUCENT TECHNICAL SUPPORT-SMB*|**ASCOTEL* *|*
> *Tel. +962 6 463 2444* *|** Mob. +962 777 383 000**|** Fax. +962 6
> 4650296**|*
> *P.O. Box 9895,* *Amman* *11191, Jordan**|* www.ascotel.com.jo
>
> [image: facebook]  [image:
> twitter] 
>
>
>
>
>
> *From:* Yuan Long [mailto:yuan.l...@chinanetcloud.com]
> *Sent:* Tuesday, January 27, 2015 12:15 PM
> *To:* mohammad Atiyat
> *Cc:* haproxy@formilux.org
> *Subject:* Re: Url load balancer
>
>
>
> http://www.haproxy.org/#plat
>
>
> Regards,
>
> 
> Long Wu Yuan 龙 武 缘
> Sr. Linux Engineer 高级工程师
> ChinaNetCloud 云络网络科技(上海)有限公司 | www.ChinaNetCloud.com1238 Xietu Lu, X2
> Space 1-601, Shanghai, China | 中国上海市徐汇区斜土路1238号X2空 间1-601室
>
> 24x7 Support Hotline: +86-400-618-0024 | Office Tel: +86-(21)-6422-1946
> We are hiring! http://careers.chinanetcloud.com  | Customer Portal -
> https://customer-portal.service.chinanetcloud.com/
>
> 
>
>
>
> On Tue, Jan 27, 2015 at 3:37 PM, mohammad Atiyat 
> wrote:
>
> Dear support,
>
>
>
> I want to test HAproxy on windows server 2008R2?
>
> The following is an example configuration section that is needed for
> setting up an Apache
>
>  load balancer for a three-instance :
>
>
>
> we need to Configure URL  load balancer to balance traffic to 3 instances
> as below ;
>
>
>
> ProxyPass /cluster balancer://gircom.ascotel.local
>
> 
>
> BalancerMember http://gir-pr.  ascotel.local:8889
>
> BalancerMember http://gir-pr.ascotel.local:8890
>
>  BalancerMember http://gir-bak.ascotel.local:8889
>
> BalancerMember  http://gir-bak.ascotel.local:8890
>
> 
>
>
>
>
>
> BR
>
>
>
> *Please consider your environmental responsibility before printing this
> e-mail*
>
>
> *-*
>
> *Mohammad Al-Atiyat**|*
>
> TECHNICAL SUPPORT ENGINEER
>
> ALCATEL LUCENT TECHNICAL SUPPORT-SMB*|**ASCOTEL* *|*
> *Tel. +962 6 463 2444* *|** Mob. +962 777 383 000**|** Fax. +962 6
> 4650296**|*
> *P.O. Box 9895,* *Amman* *11191, Jordan**|* www.ascotel.com.jo
>
> [image: facebook]  [image:
> twitter] 
>
>
>
>
>
>
>


RE: Url load balancer

2015-01-27 Thread mohammad Atiyat
Hello…

 

Can you help how to install this on the windwos and how configure the conf file 
as my request?

BR

 

Please consider your environmental responsibility before printing this e-mail

-

Mohammad Al-Atiyat|

TECHNICAL SUPPORT ENGINEER

ALCATEL LUCENT TECHNICAL SUPPORT-SMB|ASCOTEL |
Tel. +962 6 463 2444 | Mob. +962 777 383 000| Fax. +962 6 4650296|
P.O. Box 9895, Amman 11191, Jordan| www.ascotel.com.jo

  facebook  
 twitter

    

 

From: Yuan Long [mailto:yuan.l...@chinanetcloud.com] 
Sent: Tuesday, January 27, 2015 12:15 PM
To: mohammad Atiyat
Cc: haproxy@formilux.org
Subject: Re: Url load balancer

 

http://www.haproxy.org/#plat




Regards,

Long Wu Yuan 龙 武 缘 
Sr. Linux Engineer 高级工程师
ChinaNetCloud 云络网络科技(上海)有限公司 | www.ChinaNetCloud.com1238 Xietu Lu, X2 Space 
1-601, Shanghai, China | 中国上海市徐汇区斜土路1238号X2空 间1-601室

24x7 Support Hotline: +86-400-618-0024 | Office Tel: +86-(21)-6422-1946
We are hiring! http://careers.chinanetcloud.com  | Customer Portal - 
https://customer-portal.service.chinanetcloud.com/


 

On Tue, Jan 27, 2015 at 3:37 PM, mohammad Atiyat  
wrote:

Dear support,

 

I want to test HAproxy on windows server 2008R2?

The following is an example configuration section that is needed for setting up 
an Apache 

 load balancer for a three-instance :

 

we need to Configure URL  load balancer to balance traffic to 3 instances as 
below ;

 

ProxyPass /cluster balancer://gircom.ascotel.local



BalancerMember http://gir-pr.  ascotel.local:8889 

BalancerMember http://gir-pr.ascotel.local:8890 

 BalancerMember http://gir-bak.ascotel.local:8889 

BalancerMember  http://gir-bak.ascotel.local:8890



 

 

BR

 

Please consider your environmental responsibility before printing this e-mail

-

Mohammad Al-Atiyat|

TECHNICAL SUPPORT ENGINEER

ALCATEL LUCENT TECHNICAL SUPPORT-SMB|ASCOTEL |
Tel. +962 6 463 2444 | Mob. +962 777 383 000| Fax. +962 6 4650296|
P.O. Box 9895, Amman 11191, Jordan| www.ascotel.com.jo

  facebook  
 twitter

    

 

 



Dynamisez votre douche avec les capsules Skinjay

2015-01-27 Thread Skinjay


Recevez votre cadeau Skinjay spécial Saint Valentin  |  Consultez la
version en ligne
[http://link.opennews.fr/Interspire/display.php?M=1045682109&C=330875d16fb9bf2e8e8aae6457912909&S=1247&L=82&N=703]

Née pour vous faire du bienRÉVOLUTIONNEZ VOTRE DOUCHE
OFFREZ-VOUS UN SPA À DOMICILE
[http://link.opennews.fr/Interspire/link.php?M=1045682109&N=1247&L=22038&F=T
pour en savoir plus
[http://link.opennews.fr/Interspire/link.php?M=1045682109&N=1247&L=22039&F=T
Taper le code promo indiqué en page de remerciement pour recevoir
votre cadeau moyennant commande. Valeur de deux coffrets : 19,60 €
Se désinscrire
[http://link.opennews.fr/Interspire/unsubscribe.php?M=1045682109&C=330875d16fb9bf2e8e8aae6457912909&L=82&N=1247]


Soldes jusqu'a moins 90 pourcent

2015-01-27 Thread La boutique du plaisir


Soldes jusqu'à -90% |  Consultez la version en ligne
[http://link.opensoftt.fr/interspire9/D115007659-151dba5e27ca1ce17e349696bc49f979-269-44-220.html]

[http://link.opensoftt.fr/interspire9/L115007659-269-25599-T.html,

Les jours passent et les fêtes de fin d'année se profilent
à l'horizon, il est donc temps de préparer les
festivités. Découvrez un vaste choix de
références (lingerie, toys, fantaisie, bien-être...)
à prix mini. Faites marcher votre imagination et prépare
dès aujourd'hui une nuit féérique.

[http://link.opensoftt.fr/interspire9/L115007659-269-25604-T.html]
[http://link.opensoftt.fr/interspire9/L115007659-269-25604-T.html]
[http://link.opensoftt.fr/interspire9/L115007659-269-25604-T.html]
[http://link.opensoftt.fr/interspire9/L115007659-269-25604-T.html]
[http://link.opensoftt.fr/interspire9/L115007659-269-25609-T.html]
[http://link.opensoftt.fr/interspire9/L115007659-269-25614-T.html]
[http://link.opensoftt.fr/interspire9/L115007659-269-25617-T.html]
[http://link.opensoftt.fr/interspire9/L115007659-269-25620-T.html]
[http://link.opensoftt.fr/interspire9/L115007659-269-25604-T.html]
[http://link.opensoftt.fr/interspire9/L115007659-269-25604-T.html]
[http://link.opensoftt.fr/interspire9/L115007659-269-25604-T.html]
[http://link.opensoftt.fr/interspire9/L115007659-269-25604-T.html]
[http://link.opensoftt.fr/interspire9/L115007659-269-25623-T.html]
[http://link.opensoftt.fr/interspire9/L115007659-269-25623-T.html]
Ne plus recevoir ce type de communication et se désabonner
[http://link.opensoftt.fr/interspire9/U115007659-151dba5e27ca1ce17e349696bc49f979-44-269.html]


Re: Url load balancer

2015-01-27 Thread Yuan Long
http://www.haproxy.org/#plat

Regards,

Long Wu Yuan 龙 武 缘
Sr. Linux Engineer 高级工程师
ChinaNetCloud 云络网络科技(上海)有限公司 | www.ChinaNetCloud.com1238 Xietu Lu, X2 Space
1-601, Shanghai, China | 中国上海市徐汇区斜土路1238号X2空 间1-601室

24x7 Support Hotline: +86-400-618-0024 | Office Tel: +86-(21)-6422-1946
We are hiring! http://careers.chinanetcloud.com  | Customer Portal -
https://customer-portal.service.chinanetcloud.com/



On Tue, Jan 27, 2015 at 3:37 PM, mohammad Atiyat 
wrote:

> Dear support,
>
>
>
> I want to test HAproxy on windows server 2008R2?
>
> The following is an example configuration section that is needed for
> setting up an Apache
>
>  load balancer for a three-instance :
>
>
>
> we need to Configure URL  load balancer to balance traffic to 3 instances
> as below ;
>
>
>
> ProxyPass /cluster balancer://gircom.ascotel.local
>
> 
>
> BalancerMember http://gir-pr.  ascotel.local:8889
>
> BalancerMember http://gir-pr.ascotel.local:8890
>
>  BalancerMember http://gir-bak.ascotel.local:8889
>
> BalancerMember  http://gir-bak.ascotel.local:8890
>
> 
>
>
>
>
>
> BR
>
>
>
> *Please consider your environmental responsibility before printing this
> e-mail*
>
>
> *-*
>
> *Mohammad Al-Atiyat**|*
>
> TECHNICAL SUPPORT ENGINEER
>
> ALCATEL LUCENT TECHNICAL SUPPORT-SMB*|**ASCOTEL* *|*
> *Tel. +962 6 463 2444* *|** Mob. +962 777 383 000**|** Fax. +962 6
> 4650296**|*
> *P.O. Box 9895,* *Amman* *11191, Jordan**|* www.ascotel.com.jo
>
> [image: facebook]  [image:
> twitter] 
>
>
>
>
>