I looked at your site for answers to my problem - which is:

I have Tomcat on a seperate machine from apache so I cannot implement the
listeners as you describe because I don't have Apache2 on the machine with
tomcat on it.  I have the mod_jk running but it spews a bunch of information
to the console, and I want to capture it in a log.  I would like to capture
it to /dev/null but I would settle for a log file.

Does Tomcat Listener actually need the same copy of the modjk_so as apache
or will any copy do?


-----Original Message-----
From: Oscar Carrillo [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 30, 2003 10:33 AM
To: Tomcat Users List
Subject: Re: Help needed with Apache 2.0.47 Tomcat 4.1.27 + mod_jk


Be careful in sending to this list. There were multiple messages of the
same post. Answers within.

On Thu, 30 Oct 2003, Joaquin Corchero wrote:

> Hi everyone
>
> I hope someone can help me
>
> After having a look to your url. I've to say that I think I'm closer to a
> solution, but I haven't arrived yet.
>
> I haven't achieved yet to make apache and tomcat work together.
>
> I followed the steps to setup apache nonssl, tomcat and mod_jk because I
had
> java already installed and I work with mysql and I think I don't need any
of
> the other packages that you mention in the url.
>
> After following your instructions I found two steps a bit estrange that I
> don't understand:
>
> 1)
> Directly below this line in "/usr/local/tomcat/WEB-INF/server.xml"
> <Host name="localhost" debug="0" appBase="webapps">
> Add this line
> <Listener className="org.apache.ajp.tomcat4.config.ApacheConfig"
> append="true" forwardAll="false"
>  modJk="/usr/local/apache2/modules/mod_jk.so" />
>
> Do you mean that I need to create a folder called WEB-INF and introduce a
> copy of server.xml?

No, that was typo. Funny you mention it, I changed it yesterday on the
site:
Proper location: /usr/local/tomcat/conf/server.xml

>
> 2) In the same paragraph you have this:
> Create file "/usr/local/tomcat/workers.properties" with these contents:
> # Setting Tomcat & Java Home
> workers.tomcat_home=/usr/local/tomcat
> workers.java_home=/usr/local/java/java
> ps=/
> worker.list=ajp13
> worker.ajp13.port=8009
> worker.ajp13..host=localhost:443
> worker.ajp13.type=ajp13
>
> But the default location for the workers file (or the location that
> "everybody " uses) is /usr/local/tomcat/conf/jk/workers.properties. Do you
> mean that I need to create another workers .properties?


You're right, it should be /usr/local/tomcat/conf/jk/workers.properties.


> Anyway is what I created the new file and I copied the same content in the
> other workers but I'm not sure if the line
worker.ajp13..host=localhost:443
> should be worker.ajp13..host=localhost:80 because I'm not using SSL.

That line is unncessary with talking to apache. It should read like the
following:
worker.list=ajp13
worker.ajp13.port=8009
worker.ajp13.host=localhost
worker.ajp13.type=ajp13

I'll make these changes today on my site. Sorry for the confusion. Check
John Turner's site if you want for double-checking, which there is a link
on my site to.

Good luck,
Oscar

>
> Attached you will find my httpd.conf, server.xml and workers.properties.
>
> Thank you for your help.
>
> Joaquin
>
> Talego
>
> > ----- Original Message -----
> > From: "Oscar Carrillo" <[EMAIL PROTECTED]>
> > To: "Tomcat Users List" <[EMAIL PROTECTED]>
> > Sent: Wednesday, October 29, 2003 4:15 PM
> > Subject: Re: Help needed with Apache 2.0.47 Tomcat 4.1.27 + mod_jk
> >
> >
> > > Does Apache launches and serves up plain html files?
> > >
> > > If so, most likely it's the mapping done in httpd.conf and/or the
> > > auto-generated modjk.conf file.
> > >
> > > I have examples on how to do it in httpd.conf for virtual hosting
here:
> > > http://daydream.stanford.edu/tomcat/install_web_services.html
> > >
> > > It may help you in seeing what gets configured where.
> > >
> > > Oscar
> > >
> > >
> > > On Wed, 29 Oct 2003, Joaquin Corchero wrote:
> > >
> > > > Hi!
> > > >
> > > > I'm new in tomcat and I have a problem (very big for me) so I hope
> > someone will be able to help me.
> > > >
> > > > My problem is that after setting everything up following the
> > > > instructions from
> > > >
http://www.johnturner.com/howto/apache2-tomcat4127-jk-rh9-howto.html,
> > > > the apache server doesn't execute the jsp files.
> > > >
> > > > I didn't get any error during the installations, so I think
everything
> > > > is working properly.... I don't understand what's the problem.
> > > >
> > > >
> > > > Thank you
> > > >
> > > > Joaquin
> > > >
> > > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to