You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Virgil Green <vj...@obsydian.com> on 2008/10/17 17:53:53 UTC

mod_jk configuration woes

I have the following configuration (config files below) and am encountering the error
“ajp_connection_tcp_get_message::jk_ajp_common.c (1033): wrong message format 0x4854 from 127.0.0.1:8082” when attempting to access
a URL that matches one of my JKMounted entries. My versions are listed below, my workers.properties entries are supplied, my
relevant http.conf entries are supplied, and the debug log from mod_jk.log is supplied. mod_jk was built from source because of the
known issue of the latest mod_jk builds not working properly with the 2.2.3 version of Apache httpd.

Can anyone provide some insight as to why I’m getting this error message? Is it my combination of Tomcat, Apache, mod_jk? Is there
something that mod_jk is expecting but not getting from Tomcat?

Note that the URL http://localhost:8082/towergrovefeeddemo_en/ works just fine from the machine on which the httpd and tomcat
instances are running. http://www.towergrovefeed.com/towergrovefeeddemo_en/ should (effectively) map to that for purposes of
proxying. I don’t know what it is that mod_jk dislikes about the reply it’s getting.

Thanks for any insights.

 - Virgil


Versions
===============
Tomcat version 4.1.31
Apache httpd version 2.2.3
mod_jk version 1.2.26 compiled from source using instructions found at
http://webui.sourcelabs.com/tomcat/mail/user/threads/Problem_with_mod_jk_installation.meta

workers.properties
===============
# Define worker names
worker.list=worker1, englishdemo, dev
# Properties for worker1
worker.worker1.type=ajp13
worker.worker1.host=localhost
worker.worker1.port=8009
# Properties for englishdemo
worker.englishdemo.type=ajp13
worker.englishdemo.host=localhost
worker.englishdemo.port=8082
# Properties for dev
worker.dev.type=ajp13
worker.dev.host=localhost
worker.dev.port=8086


httpd.conf entries:
===============
LoadModule jk_module modules/mod_jk.so
# Where to find workers.properties
# Update this path to match your conf directory location (put workers.properties next to httpd.conf)
JkWorkersFile /etc/httpd/conf/workers.properties
# Where to put jk shared memory
# Update this path to match your local state directory or logs directory
JkShmFile     /var/log/httpd/mod_jk.shm
# Where to put jk logs
# Update this path to match your logs directory location (put mod_jk.log next to access_log)
JkLogFile     /var/log/httpd/mod_jk.log
# Set the jk log level [debug/error/info]
JkLogLevel    debug
# Select the timestamp log format
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
# Send everything for context /examples to worker named worker1 (ajp13)
JkMount  /towergrovefeeddemo_en/* englishdemo
JkMount  /towergrovefeeddev2/* dev
JkMount  /examples/* worker1

Complete mod_jk debug log from startup of apache to execution of first request:
===============
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_set_time_fmt::jk_util.c (430): Pre-processed log time stamp format is '[%a
%b %d %H:%M:%S %Y] '
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] uri_worker_map_open::jk_uri_worker_map.c (427): rule map size is 3
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] uri_worker_map_add::jk_uri_worker_map.c (379): wildchar rule
'/towergrovefeeddemo_en/*=englishdemo' source 'JkMount' was added
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] uri_worker_map_add::jk_uri_worker_map.c (379): wildchar rule
'/towergrovefeeddev2/*=dev' source 'JkMount' was added
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] uri_worker_map_add::jk_uri_worker_map.c (379): wildchar rule
'/examples/*=worker1' source 'JkMount' was added
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] do_shm_open::jk_shm.c (402): Truncated shared memory to 28800
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] do_shm_open::jk_shm.c (447): Initialized shared memory size=28800 free=28672
addr=0x40f99000
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] do_shm_open_lock::jk_shm.c (321): Opened shared memory lock
/var/log/httpd/mod_jk.shm.17274.lock
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] init_jk::mod_jk.c (2775): Initialized shm:/var/log/httpd/mod_jk.shm.17274
(28672 bytes)
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] init_jk::mod_jk.c (2792): Setting default connection pool max size to 1
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property 'worker.list' with value
'worker1, englishdemo, dev' to map.
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property 'worker.worker1.type'
with value 'ajp13' to map.
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property 'worker.worker1.host'
with value 'localhost' to map.
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property 'worker.worker1.port'
with value '8009' to map.
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property
'worker.englishdemo.type' with value 'ajp13' to map.
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property
'worker.englishdemo.host' with value 'localhost' to map.
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property
'worker.englishdemo.port' with value '8082' to map.
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property 'worker.dev.type' with
value 'ajp13' to map.
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property 'worker.dev.host' with
value 'localhost' to map.
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property 'worker.dev.port' with
value '8086' to map.
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_resolve_references::jk_map.c (770): Checking for references with prefix
worker. with wildcard (recursion 1)
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'ServerRoot' -> '/etc/httpd'
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.list' -> 'worker1,
englishdemo, dev'
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.worker1.type' -> 'ajp13'
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.worker1.host' -> 'localhost'
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.worker1.port' -> '8009'
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.englishdemo.type' -> 'ajp13'
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.englishdemo.host' ->
'localhost'
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.englishdemo.port' -> '8082'
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.dev.type' -> 'ajp13'
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.dev.host' -> 'localhost'
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.dev.port' -> '8086'
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] build_worker_map::jk_worker.c (241): creating worker worker1
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] wc_create_worker::jk_worker.c (145): about to create instance worker1 of ajp13
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] wc_create_worker::jk_worker.c (158): about to validate and init worker1
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_validate::jk_ajp_common.c (2249): worker worker1 contact is
'localhost:8009'
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2380): setting endpoint options:
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2383): keepalive:        0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2387): timeout:          0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2391): buffer size:      0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2395): pool timeout:     0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2399): connect timeout:  0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2403): reply timeout:    0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2407): prepost timeout:  0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2411): recovery options: 0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2415): retries:          2
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2419): max packet size:  8192
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_create_endpoint_cache::jk_ajp_common.c (2288): setting connection pool
size to 1 with min 1
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] build_worker_map::jk_worker.c (241): creating worker englishdemo
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] wc_create_worker::jk_worker.c (145): about to create instance englishdemo of
ajp13
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] wc_create_worker::jk_worker.c (158): about to validate and init englishdemo
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_validate::jk_ajp_common.c (2249): worker englishdemo contact is
'localhost:8082'
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2380): setting endpoint options:
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2383): keepalive:        0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2387): timeout:          0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2391): buffer size:      0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2395): pool timeout:     0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2399): connect timeout:  0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2403): reply timeout:    0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2407): prepost timeout:  0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2411): recovery options: 0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2415): retries:          2
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2419): max packet size:  8192
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_create_endpoint_cache::jk_ajp_common.c (2288): setting connection pool
size to 1 with min 1
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] build_worker_map::jk_worker.c (241): creating worker dev
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] wc_create_worker::jk_worker.c (145): about to create instance dev of ajp13
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] wc_create_worker::jk_worker.c (158): about to validate and init dev
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_validate::jk_ajp_common.c (2249): worker dev contact is 'localhost:8086'
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2380): setting endpoint options:
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2383): keepalive:        0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2387): timeout:          0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2391): buffer size:      0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2395): pool timeout:     0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2399): connect timeout:  0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2403): reply timeout:    0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2407): prepost timeout:  0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2411): recovery options: 0
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2415): retries:          2
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_init::jk_ajp_common.c (2419): max packet size:  8192
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [debug] ajp_create_endpoint_cache::jk_ajp_common.c (2288): setting connection pool
size to 1 with min 1
[Thu Oct 16 22:30:52 2008] [17274:1081287232] [info] init_jk::mod_jk.c (2825): mod_jk/1.2.26 initialized
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_set_time_fmt::jk_util.c (430): Pre-processed log time stamp format is '[%a
%b %d %H:%M:%S %Y] '
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] uri_worker_map_open::jk_uri_worker_map.c (427): rule map size is 3
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] uri_worker_map_add::jk_uri_worker_map.c (379): wildchar rule
'/towergrovefeeddemo_en/*=englishdemo' source 'JkMount' was added
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] uri_worker_map_add::jk_uri_worker_map.c (379): wildchar rule
'/towergrovefeeddev2/*=dev' source 'JkMount' was added
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] uri_worker_map_add::jk_uri_worker_map.c (379): wildchar rule
'/examples/*=worker1' source 'JkMount' was added
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] do_shm_open::jk_shm.c (402): Truncated shared memory to 28800
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] do_shm_open::jk_shm.c (447): Initialized shared memory size=28800 free=28672
addr=0x40fb2000
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] do_shm_open_lock::jk_shm.c (321): Opened shared memory lock
/var/log/httpd/mod_jk.shm.17275.lock
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] init_jk::mod_jk.c (2775): Initialized shm:/var/log/httpd/mod_jk.shm.17275
(28672 bytes)
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] init_jk::mod_jk.c (2792): Setting default connection pool max size to 1
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property 'worker.list' with value
'worker1, englishdemo, dev' to map.
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property 'worker.worker1.type'
with value 'ajp13' to map.
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property 'worker.worker1.host'
with value 'localhost' to map.
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property 'worker.worker1.port'
with value '8009' to map.
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property
'worker.englishdemo.type' with value 'ajp13' to map.
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property
'worker.englishdemo.host' with value 'localhost' to map.
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property
'worker.englishdemo.port' with value '8082' to map.
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property 'worker.dev.type' with
value 'ajp13' to map.
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property 'worker.dev.host' with
value 'localhost' to map.
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_read_property::jk_map.c (492): Adding property 'worker.dev.port' with
value '8086' to map.
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_resolve_references::jk_map.c (770): Checking for references with prefix
worker. with wildcard (recursion 1)
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'ServerRoot' -> '/etc/httpd'
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.list' -> 'worker1,
englishdemo, dev'
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.worker1.type' -> 'ajp13'
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.worker1.host' -> 'localhost'
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.worker1.port' -> '8009'
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.englishdemo.type' -> 'ajp13'
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.englishdemo.host' ->
'localhost'
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.englishdemo.port' -> '8082'
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.dev.type' -> 'ajp13'
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.dev.host' -> 'localhost'
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] jk_map_dump::jk_map.c (590): Dump of map: 'worker.dev.port' -> '8086'
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] build_worker_map::jk_worker.c (241): creating worker worker1
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] wc_create_worker::jk_worker.c (145): about to create instance worker1 of ajp13
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] wc_create_worker::jk_worker.c (158): about to validate and init worker1
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_validate::jk_ajp_common.c (2249): worker worker1 contact is
'localhost:8009'
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2380): setting endpoint options:
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2383): keepalive:        0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2387): timeout:          0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2391): buffer size:      0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2395): pool timeout:     0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2399): connect timeout:  0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2403): reply timeout:    0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2407): prepost timeout:  0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2411): recovery options: 0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2415): retries:          2
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2419): max packet size:  8192
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_create_endpoint_cache::jk_ajp_common.c (2288): setting connection pool
size to 1 with min 1
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] build_worker_map::jk_worker.c (241): creating worker englishdemo
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] wc_create_worker::jk_worker.c (145): about to create instance englishdemo of
ajp13
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] wc_create_worker::jk_worker.c (158): about to validate and init englishdemo
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_validate::jk_ajp_common.c (2249): worker englishdemo contact is
'localhost:8082'
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2380): setting endpoint options:
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2383): keepalive:        0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2387): timeout:          0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2391): buffer size:      0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2395): pool timeout:     0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2399): connect timeout:  0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2403): reply timeout:    0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2407): prepost timeout:  0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2411): recovery options: 0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2415): retries:          2
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2419): max packet size:  8192
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_create_endpoint_cache::jk_ajp_common.c (2288): setting connection pool
size to 1 with min 1
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] build_worker_map::jk_worker.c (241): creating worker dev
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] wc_create_worker::jk_worker.c (145): about to create instance dev of ajp13
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] wc_create_worker::jk_worker.c (158): about to validate and init dev
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_validate::jk_ajp_common.c (2249): worker dev contact is 'localhost:8086'
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2380): setting endpoint options:
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2383): keepalive:        0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2387): timeout:          0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2391): buffer size:      0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2395): pool timeout:     0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2399): connect timeout:  0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2403): reply timeout:    0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2407): prepost timeout:  0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2411): recovery options: 0
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2415): retries:          2
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_init::jk_ajp_common.c (2419): max packet size:  8192
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [debug] ajp_create_endpoint_cache::jk_ajp_common.c (2288): setting connection pool
size to 1 with min 1
[Thu Oct 16 22:30:52 2008] [17275:1081287232] [info] init_jk::mod_jk.c (2825): mod_jk/1.2.26 initialized
[Thu Oct 16 22:30:52 2008] [17277:1081287232] [debug] do_shm_open::jk_shm.c (457): Attached shared memory [2] size=28672 free=28672
addr=0x40fb2000
[Thu Oct 16 22:30:52 2008] [17277:1081287232] [debug] do_shm_open::jk_shm.c (471): Reseting the shared memory for child 2
[Thu Oct 16 22:30:52 2008] [17277:1081287232] [debug] do_shm_open_lock::jk_shm.c (262): Duplicated shared memory lock
/var/log/httpd/mod_jk.shm.17275.lock
[Thu Oct 16 22:30:52 2008] [17277:1081287232] [debug] jk_child_init::mod_jk.c (2730): Attached shm:/var/log/httpd/mod_jk.shm.17275
(28672 bytes)
[Thu Oct 16 22:30:52 2008] [17277:1081287232] [debug] jk_child_init::mod_jk.c (2740): Initialized mod_jk/1.2.26
[Thu Oct 16 22:30:52 2008] [17278:1081287232] [debug] do_shm_open::jk_shm.c (457): Attached shared memory [3] size=28672 free=28672
addr=0x40fb2000
[Thu Oct 16 22:30:52 2008] [17278:1081287232] [debug] do_shm_open::jk_shm.c (471): Reseting the shared memory for child 3
[Thu Oct 16 22:30:52 2008] [17278:1081287232] [debug] do_shm_open_lock::jk_shm.c (262): Duplicated shared memory lock
/var/log/httpd/mod_jk.shm.17275.lock
[Thu Oct 16 22:30:52 2008] [17278:1081287232] [debug] jk_child_init::mod_jk.c (2730): Attached shm:/var/log/httpd/mod_jk.shm.17275
(28672 bytes)
[Thu Oct 16 22:30:52 2008] [17278:1081287232] [debug] jk_child_init::mod_jk.c (2740): Initialized mod_jk/1.2.26
[Thu Oct 16 22:30:52 2008] [17279:1081287232] [debug] do_shm_open::jk_shm.c (457): Attached shared memory [4] size=28672 free=28672
addr=0x40fb2000
[Thu Oct 16 22:30:52 2008] [17279:1081287232] [debug] do_shm_open::jk_shm.c (471): Reseting the shared memory for child 4
[Thu Oct 16 22:30:52 2008] [17279:1081287232] [debug] do_shm_open_lock::jk_shm.c (262): Duplicated shared memory lock
/var/log/httpd/mod_jk.shm.17275.lock
[Thu Oct 16 22:30:52 2008] [17279:1081287232] [debug] jk_child_init::mod_jk.c (2730): Attached shm:/var/log/httpd/mod_jk.shm.17275
(28672 bytes)
[Thu Oct 16 22:30:52 2008] [17279:1081287232] [debug] jk_child_init::mod_jk.c (2740): Initialized mod_jk/1.2.26
[Thu Oct 16 22:30:52 2008] [17280:1081287232] [debug] do_shm_open::jk_shm.c (457): Attached shared memory [5] size=28672 free=28672
addr=0x40fb2000
[Thu Oct 16 22:30:52 2008] [17280:1081287232] [debug] do_shm_open::jk_shm.c (471): Reseting the shared memory for child 5
[Thu Oct 16 22:30:52 2008] [17280:1081287232] [debug] do_shm_open_lock::jk_shm.c (262): Duplicated shared memory lock
/var/log/httpd/mod_jk.shm.17275.lock
[Thu Oct 16 22:30:52 2008] [17280:1081287232] [debug] jk_child_init::mod_jk.c (2730): Attached shm:/var/log/httpd/mod_jk.shm.17275
(28672 bytes)
[Thu Oct 16 22:30:52 2008] [17280:1081287232] [debug] jk_child_init::mod_jk.c (2740): Initialized mod_jk/1.2.26
[Thu Oct 16 22:30:52 2008] [17281:1081287232] [debug] do_shm_open::jk_shm.c (457): Attached shared memory [6] size=28672 free=28672
addr=0x40fb2000
[Thu Oct 16 22:30:52 2008] [17281:1081287232] [debug] do_shm_open::jk_shm.c (471): Reseting the shared memory for child 6
[Thu Oct 16 22:30:52 2008] [17281:1081287232] [debug] do_shm_open_lock::jk_shm.c (262): Duplicated shared memory lock
/var/log/httpd/mod_jk.shm.17275.lock
[Thu Oct 16 22:30:52 2008] [17281:1081287232] [debug] jk_child_init::mod_jk.c (2730): Attached shm:/var/log/httpd/mod_jk.shm.17275
(28672 bytes)
[Thu Oct 16 22:30:52 2008] [17281:1081287232] [debug] jk_child_init::mod_jk.c (2740): Initialized mod_jk/1.2.26
[Thu Oct 16 22:30:52 2008] [17282:1081287232] [debug] do_shm_open::jk_shm.c (457): Attached shared memory [7] size=28672 free=28672
addr=0x40fb2000
[Thu Oct 16 22:30:52 2008] [17282:1081287232] [debug] do_shm_open::jk_shm.c (471): Reseting the shared memory for child 7
[Thu Oct 16 22:30:52 2008] [17282:1081287232] [debug] do_shm_open_lock::jk_shm.c (262): Duplicated shared memory lock
/var/log/httpd/mod_jk.shm.17275.lock
[Thu Oct 16 22:30:52 2008] [17282:1081287232] [debug] jk_child_init::mod_jk.c (2730): Attached shm:/var/log/httpd/mod_jk.shm.17275
(28672 bytes)
[Thu Oct 16 22:30:52 2008] [17282:1081287232] [debug] jk_child_init::mod_jk.c (2740): Initialized mod_jk/1.2.26
[Thu Oct 16 22:30:52 2008] [17283:1081287232] [debug] do_shm_open::jk_shm.c (457): Attached shared memory [8] size=28672 free=28672
addr=0x40fb2000
[Thu Oct 16 22:30:52 2008] [17283:1081287232] [debug] do_shm_open::jk_shm.c (471): Reseting the shared memory for child 8
[Thu Oct 16 22:30:52 2008] [17283:1081287232] [debug] do_shm_open_lock::jk_shm.c (262): Duplicated shared memory lock
/var/log/httpd/mod_jk.shm.17275.lock
[Thu Oct 16 22:30:52 2008] [17283:1081287232] [debug] jk_child_init::mod_jk.c (2730): Attached shm:/var/log/httpd/mod_jk.shm.17275
(28672 bytes)
[Thu Oct 16 22:30:52 2008] [17283:1081287232] [debug] jk_child_init::mod_jk.c (2740): Initialized mod_jk/1.2.26
[Thu Oct 16 22:30:52 2008] [17284:1081287232] [debug] do_shm_open::jk_shm.c (457): Attached shared memory [9] size=28672 free=28672
addr=0x40fb2000
[Thu Oct 16 22:30:52 2008] [17284:1081287232] [debug] do_shm_open::jk_shm.c (471): Reseting the shared memory for child 9
[Thu Oct 16 22:30:52 2008] [17284:1081287232] [debug] do_shm_open_lock::jk_shm.c (262): Duplicated shared memory lock
/var/log/httpd/mod_jk.shm.17275.lock
[Thu Oct 16 22:30:52 2008] [17284:1081287232] [debug] jk_child_init::mod_jk.c (2730): Attached shm:/var/log/httpd/mod_jk.shm.17275
(28672 bytes)
[Thu Oct 16 22:30:52 2008] [17284:1081287232] [debug] jk_child_init::mod_jk.c (2740): Initialized mod_jk/1.2.26
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] map_uri_to_worker::jk_uri_worker_map.c (682): Attempting to map URI
'/towergrovefeeddemo_en/' from 3 maps
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] find_match::jk_uri_worker_map.c (503): Attempting to map context URI
'/towergrovefeeddemo_en/*=englishdemo' source 'JkMount'
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] find_match::jk_uri_worker_map.c (516): Found a wildchar match
'/towergrovefeeddemo_en/*=englishdemo'
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] jk_handler::mod_jk.c (2222): Into handler jakarta-servlet worker=englishdemo
r->proxyreq=0
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] wc_get_worker_for_name::jk_worker.c (115): found a worker englishdemo
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] wc_maintain::jk_worker.c (323): Maintaining worker worker1
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] wc_maintain::jk_worker.c (323): Maintaining worker englishdemo
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] wc_maintain::jk_worker.c (323): Maintaining worker dev
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] wc_get_name_for_type::jk_worker.c (292): Found worker type 'ajp13'
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] init_ws_service::mod_jk.c (888): Service protocol=HTTP/1.1 method=GET
host=(null) addr=70.13.217.110 name=www.towergrovefeed.com port=80 auth=(null) user=(null) laddr=64.22.71.113 raddr=70.13.217.110
uri=/towergrovefeeddemo_en/
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_get_endpoint::jk_ajp_common.c (2579): acquired connection pool slot=0
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_marshal_into_msgb::jk_ajp_common.c (553): ajp marshaling done
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_service::jk_ajp_common.c (2050): processing englishdemo with 2 retries
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_send_request::jk_ajp_common.c (1352): (englishdemo) all endpoints are
disconnected, detected by connect check (0), cping (0), send (0)
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] jk_open_socket::jk_connect.c (448): socket TCP_NODELAY set to On
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] jk_open_socket::jk_connect.c (548): trying to connect socket 14 to
127.0.0.1:8082
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] jk_open_socket::jk_connect.c (574): socket 14 connected to 127.0.0.1:8082
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connect_to_endpoint::jk_ajp_common.c (878): Connected socket 14 to
(127.0.0.1:8082)
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): sending to ajp13 pos=4
len=591 max=8192
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0000    12 34 02 4B 02
02 00 08 48 54 54 50 2F 31 2E 31  - .4.K....HTTP/1.1
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0010    00 00 17 2F 74
6F 77 65 72 67 72 6F 76 65 66 65  - .../towergrovefe
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0020    65 64 64 65 6D
6F 5F 65 6E 2F 00 00 0D 37 30 2E  - eddemo_en/...70.
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0030    31 33 2E 32 31
37 2E 31 31 30 00 FF FF 00 16 77  - 13.217.110.....w
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0040    77 77 2E 74 6F
77 65 72 67 72 6F 76 65 66 65 65  - ww.towergrovefee
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0050    64 2E 63 6F 6D
00 00 50 00 00 0A A0 0B 00 16 77  - d.com..P.......w
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0060    77 77 2E 74 6F
77 65 72 67 72 6F 76 65 66 65 65  - ww.towergrovefee
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0070    64 2E 63 6F 6D
00 A0 0E 00 6F 4D 6F 7A 69 6C 6C  - d.com....oMozill
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0080    61 2F 35 2E 30
20 28 57 69 6E 64 6F 77 73 3B 20  - a/5.0.(Windows;.
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0090    55 3B 20 57 69
6E 64 6F 77 73 20 4E 54 20 35 2E  - U;.Windows.NT.5.
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 00a0    31 3B 20 65 6E
2D 55 53 3B 20 72 76 3A 31 2E 39  - 1;.en-US;.rv:1.9
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 00b0    2E 30 2E 33 29
20 47 65 63 6B 6F 2F 32 30 30 38  - .0.3).Gecko/2008
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 00c0    30 39 32 34 31
37 20 46 69 72 65 66 6F 78 2F 33  - 092417.Firefox/3
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 00d0    2E 30 2E 33 20
28 2E 4E 45 54 20 43 4C 52 20 33  - .0.3.(.NET.CLR.3
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 00e0    2E 35 2E 33 30
37 32 39 29 00 A0 01 00 3F 74 65  - .5.30729)....?te
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 00f0    78 74 2F 68 74
6D 6C 2C 61 70 70 6C 69 63 61 74  - xt/html,applicat
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0100    69 6F 6E 2F 78
68 74 6D 6C 2B 78 6D 6C 2C 61 70  - ion/xhtml+xml,ap
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0110    70 6C 69 63 61
74 69 6F 6E 2F 78 6D 6C 3B 71 3D  - plication/xml;q=
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0120    30 2E 39 2C 2A
2F 2A 3B 71 3D 30 2E 38 00 00 0F  - 0.9,*/*;q=0.8...
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0130    41 63 63 65 70
74 2D 4C 61 6E 67 75 61 67 65 00  - Accept-Language.
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0140    00 0E 65 6E 2D
75 73 2C 65 6E 3B 71 3D 30 2E 35  - ..en-us,en;q=0.5
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0150    00 00 0F 41 63
63 65 70 74 2D 45 6E 63 6F 64 69  - ...Accept-Encodi
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0160    6E 67 00 00 0C
67 7A 69 70 2C 64 65 66 6C 61 74  - ng...gzip,deflat
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0170    65 00 00 0E 41
63 63 65 70 74 2D 43 68 61 72 73  - e...Accept-Chars
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0180    65 74 00 00 1E
49 53 4F 2D 38 38 35 39 2D 31 2C  - et...ISO-8859-1,
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0190    75 74 66 2D 38
3B 71 3D 30 2E 37 2C 2A 3B 71 3D  - utf-8;q=0.7,*;q=
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 01a0    30 2E 37 00 00
0A 4B 65 65 70 2D 41 6C 69 76 65  - 0.7...Keep-Alive
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 01b0    00 00 03 33 30
30 00 A0 06 00 0A 6B 65 65 70 2D  - ...300.....keep-
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 01c0    61 6C 69 76 65
00 A0 09 00 7D 4A 53 45 53 53 49  - alive....}JSESSI
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 01d0    4F 4E 49 44 3D
33 35 38 46 31 37 38 36 44 44 35  - ONID=358F1786DD5
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 01e0    45 43 43 33 34
45 44 38 31 31 36 45 37 44 33 32  - ECC34ED8116E7D32
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 01f0    37 46 36 41 32
3B 20 77 69 6B 69 64 62 55 73 65  - 7F6A2;.wikidbUse
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0200    72 49 44 3D 32
3B 20 77 69 6B 69 64 62 55 73 65  - rID=2;.wikidbUse
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0210    72 4E 61 6D 65
3D 56 6A 67 3B 20 77 69 6B 69 64  - rName=Vjg;.wikid
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0220    62 54 6F 6B 65
6E 3D 37 35 38 32 63 36 64 37 38  - bToken=7582c6d78
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0230    62 35 66 32 66
35 37 66 66 30 62 37 62 65 62 39  - b5f2f57ff0b7beb9
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0240    37 38 38 30 62
32 61 00 A0 08 00 01 30 00 FF 00  - 7880b2a.....0...
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_send_request::jk_ajp_common.c (1395): (englishdemo) request body to send 0
- request body to resend 0
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [error] ajp_connection_tcp_get_message::jk_ajp_common.c (1033): wrong message format
0x4854 from 127.0.0.1:8082
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [error] ajp_get_reply::jk_ajp_common.c (1766): (englishdemo) Tomcat is down or refused
connection. No response has been sent to the client (yet)
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [info] ajp_service::jk_ajp_common.c (2186): (englishdemo) sending request to tomcat
failed (recoverable),  (attempt=1)
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_send_request::jk_ajp_common.c (1352): (englishdemo) all endpoints are
disconnected, detected by connect check (0), cping (0), send (0)
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] jk_open_socket::jk_connect.c (448): socket TCP_NODELAY set to On
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] jk_open_socket::jk_connect.c (548): trying to connect socket 14 to
127.0.0.1:8082
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] jk_open_socket::jk_connect.c (574): socket 14 connected to 127.0.0.1:8082
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connect_to_endpoint::jk_ajp_common.c (878): Connected socket 14 to
(127.0.0.1:8082)
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): sending to ajp13 pos=4
len=591 max=8192
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0000    12 34 02 4B 02
02 00 08 48 54 54 50 2F 31 2E 31  - .4.K....HTTP/1.1
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0010    00 00 17 2F 74
6F 77 65 72 67 72 6F 76 65 66 65  - .../towergrovefe
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0020    65 64 64 65 6D
6F 5F 65 6E 2F 00 00 0D 37 30 2E  - eddemo_en/...70.
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0030    31 33 2E 32 31
37 2E 31 31 30 00 FF FF 00 16 77  - 13.217.110.....w
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0040    77 77 2E 74 6F
77 65 72 67 72 6F 76 65 66 65 65  - ww.towergrovefee
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0050    64 2E 63 6F 6D
00 00 50 00 00 0A A0 0B 00 16 77  - d.com..P.......w
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0060    77 77 2E 74 6F
77 65 72 67 72 6F 76 65 66 65 65  - ww.towergrovefee
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0070    64 2E 63 6F 6D
00 A0 0E 00 6F 4D 6F 7A 69 6C 6C  - d.com....oMozill
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0080    61 2F 35 2E 30
20 28 57 69 6E 64 6F 77 73 3B 20  - a/5.0.(Windows;.
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0090    55 3B 20 57 69
6E 64 6F 77 73 20 4E 54 20 35 2E  - U;.Windows.NT.5.
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 00a0    31 3B 20 65 6E
2D 55 53 3B 20 72 76 3A 31 2E 39  - 1;.en-US;.rv:1.9
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 00b0    2E 30 2E 33 29
20 47 65 63 6B 6F 2F 32 30 30 38  - .0.3).Gecko/2008
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 00c0    30 39 32 34 31
37 20 46 69 72 65 66 6F 78 2F 33  - 092417.Firefox/3
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 00d0    2E 30 2E 33 20
28 2E 4E 45 54 20 43 4C 52 20 33  - .0.3.(.NET.CLR.3
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 00e0    2E 35 2E 33 30
37 32 39 29 00 A0 01 00 3F 74 65  - .5.30729)....?te
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 00f0    78 74 2F 68 74
6D 6C 2C 61 70 70 6C 69 63 61 74  - xt/html,applicat
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0100    69 6F 6E 2F 78
68 74 6D 6C 2B 78 6D 6C 2C 61 70  - ion/xhtml+xml,ap
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0110    70 6C 69 63 61
74 69 6F 6E 2F 78 6D 6C 3B 71 3D  - plication/xml;q=
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0120    30 2E 39 2C 2A
2F 2A 3B 71 3D 30 2E 38 00 00 0F  - 0.9,*/*;q=0.8...
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0130    41 63 63 65 70
74 2D 4C 61 6E 67 75 61 67 65 00  - Accept-Language.
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0140    00 0E 65 6E 2D
75 73 2C 65 6E 3B 71 3D 30 2E 35  - ..en-us,en;q=0.5
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0150    00 00 0F 41 63
63 65 70 74 2D 45 6E 63 6F 64 69  - ...Accept-Encodi
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0160    6E 67 00 00 0C
67 7A 69 70 2C 64 65 66 6C 61 74  - ng...gzip,deflat
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0170    65 00 00 0E 41
63 63 65 70 74 2D 43 68 61 72 73  - e...Accept-Chars
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0180    65 74 00 00 1E
49 53 4F 2D 38 38 35 39 2D 31 2C  - et...ISO-8859-1,
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0190    75 74 66 2D 38
3B 71 3D 30 2E 37 2C 2A 3B 71 3D  - utf-8;q=0.7,*;q=
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 01a0    30 2E 37 00 00
0A 4B 65 65 70 2D 41 6C 69 76 65  - 0.7...Keep-Alive
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 01b0    00 00 03 33 30
30 00 A0 06 00 0A 6B 65 65 70 2D  - ...300.....keep-
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 01c0    61 6C 69 76 65
00 A0 09 00 7D 4A 53 45 53 53 49  - alive....}JSESSI
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 01d0    4F 4E 49 44 3D
33 35 38 46 31 37 38 36 44 44 35  - ONID=358F1786DD5
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 01e0    45 43 43 33 34
45 44 38 31 31 36 45 37 44 33 32  - ECC34ED8116E7D32
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 01f0    37 46 36 41 32
3B 20 77 69 6B 69 64 62 55 73 65  - 7F6A2;.wikidbUse
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0200    72 49 44 3D 32
3B 20 77 69 6B 69 64 62 55 73 65  - rID=2;.wikidbUse
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0210    72 4E 61 6D 65
3D 56 6A 67 3B 20 77 69 6B 69 64  - rName=Vjg;.wikid
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0220    62 54 6F 6B 65
6E 3D 37 35 38 32 63 36 64 37 38  - bToken=7582c6d78
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0230    62 35 66 32 66
35 37 66 66 30 62 37 62 65 62 39  - b5f2f57ff0b7beb9
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (934): 0240    37 38 38 30 62
32 61 00 A0 08 00 01 30 00 FF 00  - 7880b2a.....0...
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_send_request::jk_ajp_common.c (1395): (englishdemo) request body to send 0
- request body to resend 0
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [error] ajp_connection_tcp_get_message::jk_ajp_common.c (1033): wrong message format
0x4854 from 127.0.0.1:8082
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [error] ajp_get_reply::jk_ajp_common.c (1766): (englishdemo) Tomcat is down or refused
connection. No response has been sent to the client (yet)
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [info] ajp_service::jk_ajp_common.c (2186): (englishdemo) sending request to tomcat
failed (recoverable),  (attempt=2)
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [error] ajp_service::jk_ajp_common.c (2204): (englishdemo) Connecting to tomcat
failed. Tomcat is probably not started or is listening on the wrong port
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_reset_endpoint::jk_ajp_common.c (691): (englishdemo) resetting endpoint
with sd = 4294967295 (socket shutdown)
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [debug] ajp_done::jk_ajp_common.c (2522): recycling connection pool slot=0 for worker
englishdemo
[Thu Oct 16 22:32:38 2008] [17277:1081287232] [info] jk_handler::mod_jk.c (2364): Service error=0 for worker=englishdemo


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


Re: mod_jk configuration woes

Posted by Rainer Jung <ra...@kippdata.de>.
AFaller@excelsior.edu schrieb:
>> I have the following configuration (config files below) and am 
>> encountering the error
>> “ajp_connection_tcp_get_message::jk_ajp_common.c (1033): wrong 
>> message format 0x4854 from 127.0.0.1:8082” when attempting to access
>> a URL that matches one of my JKMounted entries. My versions are 
>> listed below, my workers.properties entries are supplied, my
>> relevant http.conf entries are supplied, and the debug log from 
>> mod_jk.log is supplied. mod_jk was built from source because of the
>> known issue of the latest mod_jk builds not working properly with 
>> the 2.2.3 version of Apache httpd.
>>
>> Can anyone provide some insight as to why I’m getting this error 
>> message? Is it my combination of Tomcat, Apache, mod_jk? Is there
>> something that mod_jk is expecting but not getting from Tomcat?
>>
> 
> Mod_Jk needs to talk to tomcat via the ajp protocol.  You need to define 
> an ajp connector and point mod_jk at that port.

The connectors are defined in server.xml of Tomcat. 4.1.31 has by
default two types of ajp13 connectors to choose from. The more modern
one is the one with
className="org.apache.coyote.tomcat4.CoyoteConnector". The attribute
protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler is
important. You need one Connector per port you want to talk to via mod_jk.

BTW: if you really still need to use Tomcat 4.1, consider upgrading to
4.1.37.

Regards,

Rainer


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


Re: mod_jk configuration woes

Posted by AF...@excelsior.edu.
> I have the following configuration (config files below) and am 
> encountering the error
> “ajp_connection_tcp_get_message::jk_ajp_common.c (1033): wrong 
> message format 0x4854 from 127.0.0.1:8082” when attempting to access
> a URL that matches one of my JKMounted entries. My versions are 
> listed below, my workers.properties entries are supplied, my
> relevant http.conf entries are supplied, and the debug log from 
> mod_jk.log is supplied. mod_jk was built from source because of the
> known issue of the latest mod_jk builds not working properly with 
> the 2.2.3 version of Apache httpd.
> 
> Can anyone provide some insight as to why I’m getting this error 
> message? Is it my combination of Tomcat, Apache, mod_jk? Is there
> something that mod_jk is expecting but not getting from Tomcat?
> 

Mod_Jk needs to talk to tomcat via the ajp protocol.  You need to define 
an ajp connector and point mod_jk at that port.

Regards,

Al