Hi Ruediger,
> On 12/09/2007 04:47 PM, Guenter Knauf wrote:
> Could you please post these warning messages and your config, such that
> others can
> have a view in parallel?
sure; warnings:
[Sat Dec 08 22:07:12 2007] [warn] worker ajp://localhost:9009 already used by
another worker
[Sat Dec 08 22:07:12 2007] [warn] worker ajp://localhost:9009 already used by
another worker
my cofig which previous seemed to work with 2.2.6:
#
# Configuration for mod_proxy_ajp
#
<IfModule !proxy_module>
LoadModule proxy_module modules/proxy.nlm
</IfModule>
<IfModule !proxy_ajp_module>
LoadModule proxy_ajp_module modules/proxyajp.nlm
</IfModule>
<IfModule proxy_ajp_module>
# ProxyRequests Off
# AJP13 Single Proxy
ProxyPass /tc-s ajp://localhost:58009
# Locations to some Java Apps
<Location /servlet-examples/>
ProxyPass ajp://localhost:9009
</Location>
<Location /jsp-examples/>
ProxyPass ajp://localhost:9009
</Location>
<Location /tomcat-docs/>
ProxyPass ajp://localhost:9009
</Location>
</IfModule>
# End of mod_proxy_ajp.
Guenter.