I am trying to get mod jk working with tomcat and apache. I have followed the wiki article (
http://wiki.zimbra.com/index.php?tit...e_%28mod_jk%29) but have not had any luck. Here are some details of my installation. I installed the open source version of zimbra and have not move any of the default file locations.
workers.properties file (/opt/zimbra/conf/)
worker.list=hosting
worker.localhost.port=8009
worker.localhost.host=localhost
worker.localhost.type=ajp13
worker.localhost.lbfactor=1
workers.tomcat_home=/opt/zimbra/tomcat
workers.java_home=/opt/zimbra/java
added config to /opt/zimbra/conf/httpd.conf
LoadModule jk_module modules/mod_jk.so
# Where to find workers.properties
JkWorkersFile /opt/zimbra/conf/workers.properties
# Where to put jk logs
JkLogFile /opt/zimbra/httpd-2.0.54/logs/mod_jk.log
# Set the jk log level [debug/error/info]
JkLogLevel debug
# SHM info
JkShmFile /opt/zimbra/httpd-2.0.54/logs/jk.shm
JkShmSize 10M
# Select the log format
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
# JkOptions indicate to send SSL KEY SIZE,
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories
# JkRequestLogFormat set the request format
JkRequestLogFormat "%w %V %T"
# JkMount points
JkMount /zimbra/* hosting
JkMount /service/* hosting
JkMount /zimbraAdmin/* hosting
added following to server.xml and server.xml.in
enableLookups="false" redirectPort="8443" protocol="AJP/1.3" />
After I restart tomcat and apache I cannot access the following
http://webmail.websoftdev.com but it does work when I go to
http://webmail.websoftdev.com:7070.
Do I have to compile a separate version of apache? I am trying to use the version that came with the zimbra install.
The other side effect of this is that my sasl stops functioning because my saslauthd.conf and saslauthd.conf.in file cannot translate the zimbra_url of zimbra_url:
http://hosting.websoftdev.com/service/soap/. I tried to put in the port in the url but sasl would not start, it choked at the colon.
Any ideas would be greatly appreciated!