> As the above directive indicates, I would like to have all 
> requests to Apache forwarded to Tomcat.  However, that is not 
> happening and any URL I try results in a 404 with an error 
> indicating such in Apache's error.log.
> No errors indicating failure appear in the obvious spots, and 
> no output exists in the mod_jk.log indicated above.  The 
> inprocess log files do not exist, either.

I have since abandoned attempts to forward everything, and have isolated a
few choice URLs.  I also changed my workers.properties to the following, as
suggested in the Quickstart HOWTO
(http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk/quickhowto.html):

        # Define 1 real worker using ajp13
        worker.list=worker1
        # Set properties for worker1 (ajp13)
        worker.worker1.type=ajp13
        worker.worker1.host=localhost
        worker.worker1.port=8009
        worker.worker1.lbfactor=50
        worker.worker1.cachesize=10
        worker.worker1.cache_timeout=600
        worker.worker1.socket_keepalive=1
        worker.worker1.socket_timeout=300

In addition, I uncommented the ajp13 connector, although I am not sure why
it was commented out.

Adding the following line to your mod_jk configuration may forward all
requests, except root:

        JkMount /* worker1

I just tried that and it worked on my system, so if you are having problems
it may work on yours.  

ian.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to