Reputation: 11
I have downloaded latest apache lounge and mod_proxy_cluster_2.0.0Alpha . Added mod_proxy_cluster.conf file to extra folder. Included this conf file in http.conf file and copied *.so files to modules. When i try to access mod_cluster_manager webapp it's not available but root page says "It works". Can you please let me know what's wrong am i doing.
Include conf/extra/mod_cluster.conf
LoadModule proxy_cluster_module modules/mod_proxy_cluster.so
LoadModule cluster_slotmem_module modules/mod_cluster_slotmem.so
LoadModule manager_module modules/mod_manager.so
LoadModule advertise_module modules/mod_advertise.so
MemManagerFile "cache/mod_cluster"
<IfModule manager_module>
Listen 6666
# This is a special VirtualHost that receives service messages from worker nodes.
# Access to this VirtualHost should be restricted.
<VirtualHost *:6666>
<Directory />
Require ip 127.0.0.1 ::1
</Directory>
ServerAdvertise on
AdvertiseGroup 224.0.1.105:23364
EnableMCPMReceive
# Access to this management console should be restricted.
<Location /mod_cluster_manager>
SetHandler mod_cluster-manager
Require ip 127.0.0.1 ::1
</Location>
</VirtualHost>
</IfModule>
Upvotes: 0
Views: 43
Reputation: 11
I have just uncommented below line in httpd.conf as it is mandatory for mod_cluster
LoadModule proxy_module modules/mod_proxy.so
Upvotes: 0