Hello,
I both Apache and
Tomcat running as expected when I each of them separately, however I have some problems when I try to connect them.
The mod_jk is loaded correctly (as stated in the apache logs) but Apache insists of not talking to the tomcat app.
There are virtual hosts configure in the apache (which works fine with Resin btw)
I have the following lines in my httpd.conf
LoadModule jk_module libexec/mod_jk.so
AddModule mod_jk.c
JkWorkersFile /tomcat/conf/workers.properties
JkLogFile /apache/log/mod_jk.log
JkLogLevel info
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories
JkRequestLogFormat "%w %V %T"
In addition I have the following added to each virtual host which I like to connect to Tomcat
<IfModule mod_jk.c>
JkMount /<Path to host root dir>/* worker1
</IfModule>
I edit the /tomcat/conf/workers.properties file to point to the correspond host but still the
jsp test file doesn't render correctly.
can anyone point to me what am I doing wrong ??
thanks in advance
/Shraga.