JBoss.orgCommunity Documentation
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
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
ProxyPass / balancer://mycluster1/
0: Create in all VirtualHosts defined in httpd.
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 actual formula to recalculate the status of a node is:
status = lbstatus + (elected - oldelected) * 1000)/lbfactor;
lbstatus = (elected - oldelected) * 1000)/lbfactor;
ServerAdvertise On http://hostname:port: Tell the hostname and port to use. Only needed if the VirtualHost is not defined correctly, if the VirtualHost is a Name-based Virtual Host or when VirtualHost is not used.
ServerAdvertise Off: Don't use the advertise mechanism.
Default: Off. (Any Advertise directive in a VirtualHost sets it to On in the VirtualHost)