Thanks for responding.
Which configuration file are you importing?
Tomcat automatically creates a "mod_jk.conf" file which I believe I attached to my original message.
It looks like you are trying to use workers.properties as an apache httpd config file. This file is read by mod_jk, not by apache httpd directly. For instance, you should /not/ have anything like this in your httpd.conf (or apache2.conf, or whatever): Instead, you should have a JkWorkersFile directive in your apache httpd config file.
I haven't included the workers.properties in the apache2.conf file. I have only included the following file (which was generated automatically by tomcat) which includes the JkWorkersFile directive. Hopefully that helps you help me :-) Gerry ==========mod_jk.conf================= ########## Auto generated on Tue Jun 05 09:39:34 EDT 2007########## <IfModule !mod_jk.c> LoadModule jk_module "/usr/lib/apache2/modules/mod_jk.so" </IfModule> JkWorkersFile "/etc/apache2/workers.properties" JkLogFile "/usr/local/tomcat/logs/mod_jk.log" JkLogLevel emerg <VirtualHost www.domain1.com> ServerName www.domain1.com </VirtualHost> <VirtualHost localhost> ServerName localhost JkMount /manager ajp13 JkMount /manager/* ajp13 JkMount /webdav ajp13 JkMount /webdav/* ajp13 JkMount /servlets-examples ajp13 JkMount /servlets-examples/* ajp13 JkMount /tomcat-docs ajp13 JkMount /tomcat-docs/* ajp13 JkMount /host-manager ajp13 JkMount /host-manager/* ajp13 JkMount /jsp-examples ajp13 JkMount /jsp-examples/* ajp13 JkMount /balancer ajp13 JkMount /balancer/* ajp13 </VirtualHost> --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]