You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Alex Short <al...@short.net> on 2002/06/13 15:31:02 UTC

mod_jk and Mapping configuration error

I can't for the life of me figure out my problem.  I have apache running 
all peachy, and added in mod_jk to service *.jsp to tomcat.

I'm trying to first get a single Virtual host working with this config, 
and my webroot is /opt/web/www.ialex.net

In my VirtualHost i have my JkMount
JkMount /*.jsp ajp13

and in my server.xml

    <!-- Define an AJP 1.3 Connector on port 8009 -->
    <Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
               port="8009" minProcessors="5" maxProcessors="75"
               acceptCount="10" debug="0"/>
    <Host name="www.ialex.net">
        <Context path="" docBase="/opt/web/www.ialex.net" debug="0"/>
    </Host>

No errors on startup for either apache or tomcat (I start tomcat first) 
and when i try going to a file index.jsp in /opt/web/www.ialex.net from my 
browser i get a 

<html><head><title>Apache Tomcat/4.0.3 - Error 
report</title><STYLE><!--H1{font-family : sans-serif,Arial,Tahoma;color : 
white;background-color : #0086b2;} BODY{font-family : 
sans-serif,Arial,Tahoma;color : black;background-color : white;} B{color : 
white;background-color : #0086b2;} HR{color : #0086b2;} --></STYLE> 
</head><body><h1>Apache Tomcat/4.0.3 - HTTP Status 404 - 
/index.jsp</h1><HR size="1" noshade><p><b>type</b> Status 
report</p><p><b>message</b> <u>/index.jsp</u></p><p><b>description</b> 
<u>The requested resource (/index.jsp) is not available.</u></p><HR 
size="1" noshade></body></html>

And this in my tomcat logs

2002-06-13 09:09:35 StandardHost[localhost]: MAPPING configuration error 
for request URI

Help please

Alex


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: mod_jk and Mapping configuration error

Posted by Alex Short <al...@short.net>.
I'm using Tomcat 4.0.3

I've tried looking all over the place for good documentation of 
apache+tomcat using mod_jk with Virtual Hosts and found many different 
(but none that worked for me) solutions.

Some said to put Host name= in the server.xml, others said put it in the 
workers.properties file.  Finally i got it sort of working by creating a 
symbolic link in webapps called www.ialex.net which points to my web dir.  
But unfortunately that only works if i do 
www.ialex.net/www.ialex.net/index.jsp.  otherwise it just gives me a 404.  
I've fiddled with Context host name and docBase etc, to no avail.

Does anyone have a working set of server.xml config files for a virtual 
host setup using apache+tomcat4+mod_jk ?  I want to have .jsp files within 
my webdirectory and point them to tomcat by file extention as i tried with 
JkMount /*.jsp ajp13 in my config.

Thanks

Alex
 > Alex,
> What version of Tomcat are you using?  Also, I'm trying to resolve an issue I 
> have (mod_jk not working).  Do you have a procedure on how to get mod_jk 
> working?
> 
> Thanks..
> 
> Quoting Alex Short <al...@short.net>:
> 
> > I can't for the life of me figure out my problem.  I have apache running 
> > all peachy, and added in mod_jk to service *.jsp to tomcat.
> > 
> > I'm trying to first get a single Virtual host working with this config, 
> > and my webroot is /opt/web/www.ialex.net
> > 
> > In my VirtualHost i have my JkMount
> > JkMount /*.jsp ajp13
> > 
> > and in my server.xml
> > 
> >     <!-- Define an AJP 1.3 Connector on port 8009 -->
> >     <Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
> >                port="8009" minProcessors="5" maxProcessors="75"
> >                acceptCount="10" debug="0"/>
> >     <Host name="www.ialex.net">
> >         <Context path="" docBase="/opt/web/www.ialex.net" debug="0"/>
> >     </Host>
> > 
> > No errors on startup for either apache or tomcat (I start tomcat first) 
> > and when i try going to a file index.jsp in /opt/web/www.ialex.net from my 
> > browser i get a 
> > 
> > <html><head><title>Apache Tomcat/4.0.3 - Error 
> > report</title><STYLE><!--H1{font-family : sans-serif,Arial,Tahoma;color : 
> > white;background-color : #0086b2;} BODY{font-family : 
> > sans-serif,Arial,Tahoma;color : black;background-color : white;} B{color : 
> > white;background-color : #0086b2;} HR{color : #0086b2;} --></STYLE> 
> > </head><body><h1>Apache Tomcat/4.0.3 - HTTP Status 404 - 
> > /index.jsp</h1><HR size="1" noshade><p><b>type</b> Status 
> > report</p><p><b>message</b> <u>/index.jsp</u></p><p><b>description</b> 
> > <u>The requested resource (/index.jsp) is not available.</u></p><HR 
> > size="1" noshade></body></html>
> > 
> > And this in my tomcat logs
> > 
> > 2002-06-13 09:09:35 StandardHost[localhost]: MAPPING configuration error 
> > for request URI
> > 
> > Help please
> > 
> > Alex
> > 
> > 
> > --
> > To unsubscribe, e-mail:  
> > <ma...@jakarta.apache.org>
> > For additional commands, e-mail:
> > <ma...@jakarta.apache.org>
> > 
> > 
> 
> 
> 
> --
> To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
> For additional commands, e-mail: <ma...@jakarta.apache.org>
> 
> 
> 
> 


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: mod_jk and Mapping configuration error

Posted by pj...@bitstream.net.
Alex,
What version of Tomcat are you using?  Also, I'm trying to resolve an issue I 
have (mod_jk not working).  Do you have a procedure on how to get mod_jk 
working?

Thanks..

Quoting Alex Short <al...@short.net>:

> I can't for the life of me figure out my problem.  I have apache running 
> all peachy, and added in mod_jk to service *.jsp to tomcat.
> 
> I'm trying to first get a single Virtual host working with this config, 
> and my webroot is /opt/web/www.ialex.net
> 
> In my VirtualHost i have my JkMount
> JkMount /*.jsp ajp13
> 
> and in my server.xml
> 
>     <!-- Define an AJP 1.3 Connector on port 8009 -->
>     <Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
>                port="8009" minProcessors="5" maxProcessors="75"
>                acceptCount="10" debug="0"/>
>     <Host name="www.ialex.net">
>         <Context path="" docBase="/opt/web/www.ialex.net" debug="0"/>
>     </Host>
> 
> No errors on startup for either apache or tomcat (I start tomcat first) 
> and when i try going to a file index.jsp in /opt/web/www.ialex.net from my 
> browser i get a 
> 
> <html><head><title>Apache Tomcat/4.0.3 - Error 
> report</title><STYLE><!--H1{font-family : sans-serif,Arial,Tahoma;color : 
> white;background-color : #0086b2;} BODY{font-family : 
> sans-serif,Arial,Tahoma;color : black;background-color : white;} B{color : 
> white;background-color : #0086b2;} HR{color : #0086b2;} --></STYLE> 
> </head><body><h1>Apache Tomcat/4.0.3 - HTTP Status 404 - 
> /index.jsp</h1><HR size="1" noshade><p><b>type</b> Status 
> report</p><p><b>message</b> <u>/index.jsp</u></p><p><b>description</b> 
> <u>The requested resource (/index.jsp) is not available.</u></p><HR 
> size="1" noshade></body></html>
> 
> And this in my tomcat logs
> 
> 2002-06-13 09:09:35 StandardHost[localhost]: MAPPING configuration error 
> for request URI
> 
> Help please
> 
> Alex
> 
> 
> --
> To unsubscribe, e-mail:  
> <ma...@jakarta.apache.org>
> For additional commands, e-mail:
> <ma...@jakarta.apache.org>
> 
> 



--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>