summaryrefslogtreecommitdiffstats
path: root/README.fedora
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2012-06-13 18:43:31 +0200
committerRemi Collet <fedora@famillecollet.com>2012-06-13 18:43:31 +0200
commit0c258a9fecac1daed409fc5ac5ee9949b461a6c3 (patch)
tree03f026c1a542538643172898ea997ece15de641a /README.fedora
reorg repoHEADmaster
Diffstat (limited to 'README.fedora')
-rw-r--r--README.fedora33
1 files changed, 33 insertions, 0 deletions
diff --git a/README.fedora b/README.fedora
new file mode 100644
index 0000000..e662b7b
--- /dev/null
+++ b/README.fedora
@@ -0,0 +1,33 @@
+= Enabling mod_cluster =
+
+Detailed information about configuring mod_cluster can be found here:
+
+ http://docs.jboss.org/mod_cluster/1.2.0/html/native.config.html
+
+== Disable proxy_balancer_module (required) ==
+
+To enable mod_cluster you need to make sure you have proxy_balancer_module disabled. Please comment out the loading of proxy_balancer_module in /etc/httpd/conf/httpd.conf:
+
+# LoadModule proxy_balancer_module
+
+== Enable mod_cluster modules (required) ==
+
+Next step is to load all required mod_cluster modules. Uncomment all LoadModule directives from
+/etc/httpd/conf.d/mod_cluster.conf file:
+
+LoadModule slotmem_module modules/mod_slotmem.so
+LoadModule proxy_cluster_module modules/mod_proxy_cluster.so
+LoadModule advertise_module modules/mod_advertise.so
+LoadModule manager_module modules/mod_manager.so
+
+== Enabling mod_cluster manager (optional) ==
+
+Mod_cluster manager is a simple tool that displays useful information about the cluster. To enable it you need to load the mod_manager module and call SetHandler for the selected context:
+
+<Location /mod_cluster_manager>
+ SetHandler mod_cluster-manager
+</Location>
+
+== Restart ==
+
+Make sure you restart the htttpd server after you apply these changes.