2 Replies Latest reply on Jul 3, 2012 6:58 AM by hfluz

    I cannot access my app through httpd and mod_cluster

    hfluz

      In this long post and this tutorial I managed to configure httpd, JBoss AS and mod_cluster. In the 189.90.70.58/mod_cluster-manager everything seems ok:

       

      mod_cluster_manager.png

       

      But when I try to access 189.90.70.58/cluster-demo (also tried 189.90.70.58:8888/cluster-demo), apache cannot find the application (404 error not found).

       

      That's my mod_cluster.conf:

       

      CreateBalancers 1
      
      <IfModule manager_module>
          Listen 189.90.70.58:8888
          ManagerBalancerName mycluster
      
          <VirtualHost 189.90.70.58:8888>
              KeepAliveTimeout 300
              MaxKeepAliveRequests 0
              AdvertiseFrequency 5
              ServerAdvertise On
              AdvertiseGroup 224.0.1.105:23364
              AllowDisplay On
              <Location />
                  Order deny,allow
                  Allow from all
              </Location>
      
              <Location /mod_cluster-manager>
                  SetHandler mod_cluster-manager
                  Order deny,allow
                  Allow from all
              </Location>
           </VirtualHost>
      
      </IfModule>
      

       

      I attached my other config files.

       

      Other informations:

      JBoss AS 7.1.1

      OS: Ubuntu 12.04

      mod_cluster 1.1.3

      Apache and JBoss as are on the same host (189.90.70.58).

       

      Could someone give me a tip about what's probably causing this issue?