Load balancing, connection loop

Posted by Iapilgrim on Stack Overflow See other posts from Stack Overflow or by Iapilgrim
Published on 2010-03-26T03:56:19Z Indexed on 2010/03/26 4:03 UTC
Read the original article Hit count: 403

Filed under:
|
|

Hi all,

I've set up load balancing using Apache, Tomcat through ajp connector. Here the config

Apache/httpd.conf

BalancerMember ajp://10.0.10.13:8009 route=osmoz-tomcat-1 retry=5

BalancerMember ajp://10.0.10.14:8009 route=osmoz-tomcat-2 retry=5

< Location />

Allow From All

ProxyPass balancer://tomcatservers/ stickysession=JSESSIONID nofailover=off

ProxyPassReverse /

< /Location>

When I try to access https://mycms.net/apps/bo/signin

I see the connection loop forever ( redirection forever). I don't know why. This happens sometimes. So my question are:

  • Is there any way Apache make connection loop?

  • Is there a tool help me to monitor the connection?

My question may not clear but I don't have any glue right now. Thanks

© Stack Overflow or respective owner

Related posts about tomcat6

Related posts about load-balancing