Hi

SPEC : Apache 2.22
O/s :Suse ent-10
LBS for 2 Tomcat's with Session based

Config currently

#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`
<IfModule !mod_proxy.c>
    LoadModule proxy_module modules/mod_proxy.so
</IfModule>

LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule proxy_http_module     modules/mod_proxy_http.so
LoadModule proxy_connect_module  modules/mod_proxy_connect.s


ProxyPass /balancer-manager !
ProxyPreserveHost On

<Proxy balancer://mycluster>
BalancerMember http://192.168.4.32:8085/  loadfactor=50      #node1
BalancerMember http://192.168.4.32:8086/  loadfactor=50      #node2
ProxySet lbmethod=bytraffic timeout=15  
</Proxy>

ProxyPass / balancer://mycluster/ stickysession=JSESSIONID|jsessionid
nofailover=On
ProxyPassReverse / balancer://mycluster/

#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Problem
a)If any one IP/PORT of node is down , Does the above config route to
another node which is alive one ?
b)What would happen to the session already latched to the node. ?
 
I have tried evaluating both cases , but failed 


with regards
karthik




--
View this message in context: 
http://apache-http-server.18135.x6.nabble.com/Proxy-Balancing-Not-working-as-Expected-tp5006574.html
Sent from the Apache HTTP Server - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to