• 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:
  • Devaka Cooray
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • Paul Clapham
Sheriffs:
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Saloon Keepers:
  • Tim Holloway
Bartenders:

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?
 
Oh, sure, you could do that. Or you could eat some pie. While reading this tiny ad:
The new gardening playing cards kickstarter is now live!
https://www.kickstarter.com/projects/paulwheaton/garden-cards
reply
    Bookmark Topic Watch Topic
  • New Topic