tarheel92x
IS-IT--Management
I have installed the following on a Windows Server:
Apache 2.0.58
Tomcat 5.0.28
SDK 1.4.2.11
mod_jk_1.2.6_2.0.50.dll (renamed mod_jk.dll and placed it in APACHE_HOME/modules)
I am trying to configure Tomcat to server up JSP pages, and have made the following modifications to the following files:
server.xml
--------------
<!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
<Connector port="8009"
enableLookups="false" redirectPort="8443" debug="0"
protocol="AJP/1.3" />
httpd.conf
-------------
LoadModule jk_module modules/mod_jk.dll
#Configure mod_jk
JkWorkersFile conf/workers.properties
#
workers.properties
------------------------
# list the workers by name
worker.list=ajp13
# ------------------------
# First tomcat server
# ------------------------
worker.ajp13.port=8009
worker.ajp13.host=localhost
worker.ajp13.type=ajp13
jk2.properties
-----------------
channelSocket.address=localhost
channelSocket.port=8009
The server.xml file is the default settings in that file. I have verified the location of my files and they are in the correct directory.
I try to go to and page is not found, works fine. I have tried reading the documentation but I cannot find what I am missing.
Any thoughts?
TIA
Apache 2.0.58
Tomcat 5.0.28
SDK 1.4.2.11
mod_jk_1.2.6_2.0.50.dll (renamed mod_jk.dll and placed it in APACHE_HOME/modules)
I am trying to configure Tomcat to server up JSP pages, and have made the following modifications to the following files:
server.xml
--------------
<!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -->
<Connector port="8009"
enableLookups="false" redirectPort="8443" debug="0"
protocol="AJP/1.3" />
httpd.conf
-------------
LoadModule jk_module modules/mod_jk.dll
#Configure mod_jk
JkWorkersFile conf/workers.properties
#
workers.properties
------------------------
# list the workers by name
worker.list=ajp13
# ------------------------
# First tomcat server
# ------------------------
worker.ajp13.port=8009
worker.ajp13.host=localhost
worker.ajp13.type=ajp13
jk2.properties
-----------------
channelSocket.address=localhost
channelSocket.port=8009
The server.xml file is the default settings in that file. I have verified the location of my files and they are in the correct directory.
I try to go to and page is not found, works fine. I have tried reading the documentation but I cannot find what I am missing.
Any thoughts?
TIA