JBoss.orgCommunity Documentation

Chapter 3. httpd configuration

3.1. Apache httpd configuration
3.2. mod_proxy configuration
3.3. mod_slotmem configuration
3.4. mod_proxy_cluster
3.4.1. CreateBalancers
3.4.2. UseAlias
3.4.3. LBstatusRecalTime
3.4.4. WaitForRemove
3.4.5. ProxyPassMatch/ProxyPass
3.4.6. EnableOptions
3.5. mod_manager
3.5.1. EnableMCPMReceive
3.5.2. MemManagerFile
3.5.3. Maxcontext
3.5.4. Maxnode
3.5.5. Maxhost
3.5.6. Maxsessionid
3.5.7. MaxMCMPMaxMessSize
3.5.8. ManagerBalancerName
3.5.9. PersistSlots
3.5.10. CheckNonce
3.5.11. AllowDisplay
3.5.12. AllowCmd
3.5.13. ReduceDisplay
3.5.14. SetHandler mod_cluster-manager
3.6. mod_advertise
3.6.1. ServerAdvertise
3.6.2. AdvertiseGroup
3.6.3. AdvertiseFrequency
3.6.4. AdvertiseSecurityKey
3.6.5. AdvertiseManagerUrl
3.6.6. AdvertiseBindAddress
3.7. Minimal Example

You need to load the modules that are needed for mod_cluster for example:

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule slotmem_module modules/mod_slotmem.so
LoadModule manager_module modules/mod_manager.so
LoadModule proxy_cluster_module modules/mod_proxy_cluster.so
LoadModule advertise_module modules/mod_advertise.so

mod_proxy and mod_proxy_ajp are standard httpd modules. mod_slotmem is a shared slotmem memory provider. mod_manager is the module that reads information from JBoss AS/JBossWeb/Tomcat and updates the shared memory information. mod_proxy_cluster is the module that contains the balancer for mod_proxy. mod_advertise is an additional module that allows httpd to advertise via multicast packets the IP and port where the mod_cluster is listening. This multi-module architecture allows the modules to easily be changed depending on what the customer wants to do. For example when using http instead of AJP, only

LoadModule proxy_ajp_module modules/mod_proxy_ajp.so

needs to be changed to:

LoadModule proxy_http_module modules/mod_proxy_http.so

mod_proxy directives like ProxyIOBufferSize could be used to configure mod_cluster. There is no need to use ProxyPass directives because mod_cluster automatically configures which URLs have to be forwarded to JBossWEB.

The actual version doesn't require any configuration directives.

UseAlias: Check that the Alias corresponds to the ServerName (See Host Name Aliases)

Off: Don't check (ignore Aliases)

On: Check aliases

Default: Off Ignore the Alias information from the nodes.

Versions older than 1.3.1.Final only accept values 0 and 1 respectively.

The Context of a mod_manger directive is VirtualHost except mentioned otherwise. server config means that it must be outside a VirtualHost configuration. If not an error message will be displayed and httpd won't start.

mod_advertise uses multicast packets to advertise the VirtualHost where it is configured that must be the same VirtualHost where mod_manager is defined. Of course at least one mod_advertise must be in the VirtualHost to allow mod_cluster to find the right IP and port to give to the ClusterListener.

LoadModule proxy_module modules/mod_proxy.so
 LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
 LoadModule slotmem_module modules/mod_slotmem.so
 LoadModule manager_module modules/mod_manager.so
 LoadModule proxy_cluster_module modules/mod_proxy_cluster.so
 LoadModule advertise_module modules/mod_advertise.so
 
 Listen 10.33.144.3:6666
 <VirtualHost 10.33.144.3:6666>
 
   <Location />
      Order deny,allow
      Deny from all
      Allow from 10.33.144.
   </Location>
 
 KeepAliveTimeout 60
 MaxKeepAliveRequests 0
 
 ManagerBalancerName mycluster
 ServerAdvertise On
 EnableMCPMReceive
 
 </VirtualHost>