You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Keith Lea <ke...@cs.oswego.edu> on 2001/10/02 01:11:48 UTC

i can't connect apache to tomcat 4 :(

I just installed tomcat 4.0 on redhat linux 2.2.16-22, apache 1.3.12, and I
can't figure out how to get it connected to apache! it works to browse to
kano.net:8080/examples but not to kano.net/examples. help please :)

here's server.xml:

<Server port="8005" shutdown="SHUTDOWN" debug="0">

    [.. standalone stuff ..]

  <Service name="Tomcat-Apache">

    <Connector className="org.apache.catalina.connector.warp.WarpConnector"
     port="8008" minProcessors="5" maxProcessors="75"
     enableLookups="true"
     acceptCount="10" debug="4" />

    <Engine className="org.apache.catalina.connector.warp.WarpEngine"
     name="Apache" defaultHost="kano.net" debug="4" 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>

</Server>


--------

and here's httpd.conf:

--------

[...]
LoadModule webapp_module      modules/mod_webapp.so
[...]
AddModule mod_webapp.c
[...]
<VirtualHost 64.0.246.101>
        ServerName kano.net
        [...]
        WebAppConnection infoConnection info
        WebAppConnection warpConnection warp localhost:8008
        WebAppDeploy null infoConnection /webappinfo/
        WebAppDeploy examples warpConnection /examples/
</VirtualHost>
[...]

I'm not sure what's happening with it...at all. it just says kano.net/examples
is not found (404). i've used tomcat before, just not with apache. :/ thanks for
any help anyone can give me.

-kl