Phillippe, 1. check tomcat configuration on management server, make sure that AJP 1.3 configured properly. My default config. use port 20400
/etc/cloud/management/server.xml <!-- Define an AJP 1.3 Connector on port 20400 --> <Connector port="20400" protocol="AJP/1.3" redirectPort="8443" /> 2. There are many blog post about using mod_jk, e.g. http://blog.rajeevsharma.in/2010/02/configure-modjk-with-apache-22-in.html (depend on Linux distro) change the line worker.ajp13.port to value configured in 1. jk_workers.properties # Define 1 real worker named ajp13 worker.list=ajp13 # Set properties for worker named ajp13 to use ajp13 protocol, # and run on port 8009 worker.ajp13.type=ajp13 worker.ajp13.host=localhost worker.ajp13.port=20400 worker.ajp13.lbfactor=50 worker.ajp13.cachesize=10 worker.ajp13.cache_timeout=600 worker.ajp13.socket_keepalive=1 worker.ajp13.socket_timeout=300 Should be all. Nont On Jun 24, 2556 BE, at 3:59 PM, Philippe Van Hecke <[email protected]> wrote: > Is it possible to use apache mod_jk with the cloudstack Web UI ? > If yes, does some documentation exist for this ? > > Regards > > Philippe. > > > <0xDFC3F3D3.asc>
