• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Please help integrating Apache2.0.61 with Tomcat-5.5.15

 
Ranch Hand
Posts: 224
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am integrating Apache2.0.61 with Tomcat-5.5.15 with
mod_jk-2.0.42.dll or
mod_jk_2.0.46.dll

1)installations locations
D:\Apache2
D:\D:\Tomcat-5.5.15


2)Following are settings
D:\Apache2\conf\httpd.conf

LoadModule jk_module modules/mod_jk-2.0.42.dl
<IfModule mod_jk.c>
JkWorkersFile D:/Apache2/conf/workers.properties
JkLogFile D:/Apache2/logs/mod_jk.log
JkLogLevel info

# Map in the Ozibug webapp
JkMount /jsp-examples worker1
JkMount /jsp-examples/*worker1
</IfModule>

2) Follwing is worker file

# Define 1 real worker using ajp13
worker.list=worker1
# Set properties for worker1 (ajp13)
worker.worker1.type=ajp13
worker.worker1.host=localhost
worker.worker1.port=8009
worker.worker1.lbfactor=50
worker.worker1.cachesize=10
worker.worker1.cache_timeout=600
worker.worker1.socket_keepalive=1
worker.worker1.socket_timeout=300


This line works properly
http://localhost:8080/jsp-examples/

but
http://localhost/jsp-examples/
this gives 404 error page not found


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