• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

How to link Apache And Resin

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

I am running Apache as my webserver. I also installed Resin as my servlet engine. When I start Apache It says "Apache/1.3.12 (win32) Resin/2.0.3 running". It seems it is running on port 80 instead of 8080.
Question is how it run my servlets now? Should I also bring Resin up and running? I tried to run Resin with the parameter "Apche.conf" (Which is the Resin configuration file). But it started and stoped right away. The content of "Apche.conf" is as follows.
<code>
<!--
-- A sample Apache configuration
-->
<caucho.com>
<!-- <log id='/' href='stderr:'/> -->
<http-server app-dir='/usr/local/apache/htdocs' class-update-interval='2'>
<srun port='6802'/>
<!-- automatically compile Java in WEB-INF -->
<classpath id='WEB-INF/classes' source='WEB-INF/classes'/>
<error-log id='log/error.log'/>
</http-server>
</caucho.com>
</code>
Can some body help me on how to run my servlet? Resin as a standalone works fine. But I want to know how to run the servlet using Apache and Resin. Thanks in advance.

Regards,
Srikanth.
 
Ranch Hand
Posts: 3695
IntelliJ IDE Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The Apache/Tomcat forum is a better place to discuss configuration issues, so I'll move it there.

 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic