1 Reply Latest reply on Jan 8, 2016 3:10 AM by phina

    Can  mod_cluster_manager  work like(with) proxy_balancer ?

    phina

      This is my httpd.conf file:

      httpd.conf

      <IfModule manager_module>

      Listen 192.168.18.102:6660

      <VirtualHost 192.168.18.102:6660>

      <Location />

                Order deny,allow

                #Deny from all

                Allow from all

      </Location>

         KeepAliveTimeout 60

         MaxKeepAliveRequests 100

         EnableMCPMReceive On

         AdvertiseFrequency 5

         ManagerBalancerName modcluster

         ServerAdvertise On

         AllowDisplay On

         AdvertiseSecurityKey forDMZweb

         AdvertiseGroup 224.0.1.108:23333

         AdvertiseBindAddress 224.0.1.108:23333

      <Location /mod_cluster_manager>

             SetHandler mod_cluster-manager

             Order deny,allow

             #Deny from all

             Allow from all

      </Location>

      </VirtualHost>

      </IfModule>

       

      <proxy balancer://lbehomefiles>

               BalancerMember http://192.168.18.103/ loadfactor=1

               BalancerMember http://192.168.18.104/ loadfactor=1

      </proxy>

      ProxyPass /downloadfiles/   balancer://lbehomefiles/

      ProxyPassReverse /downloadfiles/  balancer://lbehomefiles/

       

      here is my problem:

           apache+jboss  run well,but 192.168.18.103 and 192.168.18.104 are my file servers, run with Aapache .

           I want the context /downloadfiles proxy to 103 and 104 with loadbalancer , just like mod_proxy_balaner.

          any suggestions for me? 

      thanks for check.