On Thu, 28 Jun 2001 [EMAIL PROTECTED] wrote:

> >     <Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
> >       port="8009" acceptCount="10" debug="0"/>
> >
> > and i built mod_jk.so and put it in my libexec directory, but i don't know
> > how to configure mod_jk in apache's httpd.conf for tomcat-catalina. do you
> > have some configuration advice for this situation?
>
> The server side configuration for Ajp13 should be identical for tomcat3
> and tomcat4. To get started ( and if you don't have too many static
> files) you can map the whole context.

okay, i've got apache talking to tomcat, but i always get this message:

Tomcat Error Report

HTTP Status 500 - No Host matches server name foobar.webslingerZ.com

my server.xml contains this service:

  <Service name="Tomcat-Apache">
    <!--
    <Connector
className="org.apache.catalina.connector.warp.WarpConnector"
      port="8008" minProcessors="5" maxProcessors="75"
      enableLookups="true" acceptCount="10" debug="0"/>
    -->
    <Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
      port="8009" acceptCount="10" debug="0"/>

    <Engine className="org.apache.catalina.connector.warp.WarpEngine"
      name="Apache" defaultHost="foobar.webslingerZ.com" debug="0"
      appBase="webapps">
      <Logger className="org.apache.catalina.logger.FileLogger"
        prefix="apache_log." suffix=".txt" timestamp="true"/>
      <Realm className="org.apache.catalina.realm.MemoryRealm" />
    </Engine>
  </Service>

i tried putting a Host element underneath the Engine but it didn't like
that at all. i think this must be wrong since i'm trying to associate an
Ajp13Connector with a WarpEngine. how should this be configured? sorry,
i've not been able to find any docs for this configuration.

- donald

Reply via email to