> Which version of mod_jk are you using? 1.2.14 Current Version
What is errno 113 on your platform? Linux Error :113 No route to host Each tcp connection from apache to tomcat blocks a thread inside tomcats > jk connector thread pool, that exclusively services requests coming over > that connection. So what are your MPM settings inside apache httpd.conf, > your workers.properties settings and your ajp 13 connectors settings in > server.xml? httpd.conf #################### # SETUP FOR TOMCAT # #################### # Where to find workers.properties JkWorkersFile /etc/httpd/conf/workers.properties # Where to put jk logs JkLogFile /var/log/httpd/mod_jk.log # Set the jk log level [debug/error/info] JkLogLevel debug # 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 %U%q" # Send everything for context /edis-efile to worker named worker1 (ajp13) JkMount /edis-efile/app* ajp13 Workers.properties worker.list=ajp13 worker.ajp13.port=8009 worker.ajp13.host=eofapps.usitc.gov worker.ajp13.type=ajp13 server.xml <!-- Define an AJP 1.3 Connector on port 8009 --> <Connector port="8009" enableLookups="false" redirectPort="8443" protocol="AJP/1.3" /> Any firewalls or other network specialities between apache and tomcat? Nope, both systems reside on the same subnet and have no firewalls between them. Thanks Again! ~Jack