problem with mod_proxy_ajp since upgrade to 6.2_rc1

Niek niek at bigfoot.com
Mon Nov 20 09:39:20 PST 2006


Today I upgraded a test server from 6.2_beta2 to 6.2_rc1.
I am using apache 2.2.3 with mod_proxy and mod_proxy_ajp to connect to 
Tomcat 5.5.20.
This configuration used to work well, but after the upgrade, connections 
via the ajp proxy are extremely slow. It seems as if something is timing 
out, as it takes several minutes until apache returns data. Connecting 
directly to Tomcat Coyote ports works well. There is nothing in the 
httpd error logs or the tomcat logs, nor in the system message log 
indicating what is going wrong.

I hope someone on this list can help me finding the problem.

Below is an excerpt of my httpd.conf:

LoadModule proxy_module libexec/apache22/mod_proxy.so
LoadModule proxy_ajp_module libexec/apache22/mod_proxy_ajp.so

<IfModule proxy_module>
   ProxyRequests Off

   <Proxy *>
   Order Deny,Allow
   Deny from all
   Allow from [my ip]
   </Proxy>
   <IfModule proxy_ajp_module>
        <Location /[mylocation]/>
        ProxyPass ajp://localhost:8009/
        SSLrequireSSL
        </Location>
</IfModule>
</IfModule>


Niek



More information about the freebsd-questions mailing list