0 Replies Latest reply on Aug 8, 2015 3:10 PM by holodnicks

    Reverse Proxy with mod_cluster and port 11826

    holodnicks

      I tried following the steps of setting up reverse-proxy with my JBoss clustered environment on my Apache server using these directions.

      In my mod_cluster.conf file I have my balancer defined as such:

       

      CreateBalancers 1

       

      <IfModule manager_module>

          Listen 172.xx.xx.xx:6666

          ManagerBalancerName mybalancer...

       


      Here is my Apache site file:

       

      <VirtualHost *:7777>

          ProxyPass / balancer://mybalancer/ stickysession=JSESSIONID|jsessionid nofailover=On

          ProxyPassReverse / balancer://mybalancer/

          ProxyPreserveHost On...

       

      When I try connecting to the http:// root of my JBoss server, I get this Apache error:

       

      [Sat Aug 08 14:59:40.293521 2015] [proxy:error] [pid 60849:tid 140355275654912] (111)Connection refused: AH00957: ajp: attempt to connect to 172.xx.xx.xx:11826 (172.xx.xx.xx) failed


      Do you know why this might occur?  Why would my server be trying to connect to port 11826.  Where is this defined?  Any help is appreciated.  Thank you.