You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Amit Gupta <am...@computerware.co.in> on 2004/11/10 08:13:16 UTC

Configuring JK connector to execute JSP pages.

Hi ,

I have configured tomcat 5.5.3 with jk connector . My jk.config is

LoadModule jk_module modules/jakarta-tomcat-connectors-jk-1.2.6-linux-fc2-i386-apache-2.0.50.so 

JkWorkersFile /etc/httpd/conf/workers2.properties


JkAutoAlias /usr/local/tomcat/webapps 

JkMount /java-server/* testWorker

JkMount /*/servlet/ testWorker


Alias /java-server/ "/usr/local/tomcat/webapps/"

<Directory "/usr/local/tomcat/webapps/">

Options Indexes MultiViews

AllowOverride None

Order allow,deny

Allow from all

</Directory>

It is not executing JSP pages. How should I configure it.

Amit Gupta