Environment: Tomcat 3.2
Apache 1.3.20
mod_jk
Solaris 2.8
Am trying to define and use a new Tomcat worker, but getting the 500 error.
In the workers.properties file, I defined:
worker.list=TonyWorker
worker.TonyWorker.port=8006
worker.TonyWorker.host=localhost
worker.TonyWorker.type=ajp13
In my httpsd.conf file, I have:
JkMount /myapp/* TonyWorker
In the mod_jk.log file, I get the following:
[jk_ajp13_worker.c (536)]: Into jk_endpoint_t::service
[jk_ajp13.c (346)]: Into ajp13_marshal_into_msgb
[jk_ajp13.c (480)]: ajp13_marshal_into_msgb - Done
[jk_connect.c (108)]: Into jk_open_socket
[jk_connect.c (115)]: jk_open_socket, try to connect socket = 7
[jk_connect.c (124)]: jk_open_socket, after connect ret = -1
[jk_connect.c (143)]: jk_open_socket, connect() failed errno = 146
[jk_ajp13_worker.c (173)]: In jk_endpoint_t::connect_to_tomcat, failed errno
= 1
46
[jk_ajp13_worker.c (584)]: Error connecting to the Tomcat process.
[jk_ajp13_worker.c (489)]: Into jk_endpoint_t::done
What am I doing wrong?
- Tony