Christopher Schultz wrote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Chris,

On 1/21/15 5:56 PM, Chris Arnold wrote:
When i look at the apache log for that request, i dont see
where the request is even making it to apache or tomcat.

Try to request a static file from DocumentRoot directory.

If you cannot, then your HTTPS is not configured correctly. Get
that working first.
Yeah, I overlooked that in my first response. As long >>>as
you don't see the request in the Apache access log, you'll
not >>>make progress.
So i got all the connections worked out and now apache and tomcat
are accepting connections. However, i still can not get mod_jk
working correctly. Here is the mod_jk debug log:

[Wed Jan 21 12:31:04 2015] [2345:139798017603520] [error]
extension_fix::jk_uri_worker_map.c (578): Could not find worker
with name 'ajp13' in uri map post processing.

You must have changed something since your original configuration. Do
you have "JkMount ajp13" somewhere? You need to use the worker name
and not the protocol name.

Can you post your updated workers.properties file, and related
httpd.conf configurations?


+1
And also, could you specify again what URL you are requesting in the browser, which you would expect to be proxied to Tomcat ?

With the previous configuration that you showed here, that should be a URL like
http://yourhost.etc/share/(something)
or
http://yourhost.etc/share2/(something)

Looking at the log you just showed, it seemed that the only requests ever passed through mod_jk for evaluation, where things like
/error/*
and mod_jk (rightly so) decides that they are not for Tomcat, declines to process them, and returns the request to Apache, to tell it to find another victim to handle that URL.

Example from your previous log :
...
map_uri_to_worker_ext::jk_uri_worker_map.c (1170): Attempting to map URI '/error/include/bottom.html' from 1 maps [Wed Jan 21 12:34:46 2015] [2507:139894823892928] [debug] find_match::jk_uri_worker_map.c (984): Attempting to map context URI '/share2/*=worker1' source 'JkMount' [Wed Jan 21 12:34:46 2015] [2507:139894823892928] [debug] jk_map_to_storage::mod_jk.c (3816): no match for /error/include/bottom.html found
...


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to