• 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

deploy webapp on tomcat 5

 
Ranch Hand
Posts: 77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i have to deploy a web application on tomcat 5.0 on a linux platform. my application is not a war file but a normal directory structure.i have placed the dir in tomcat_home/webapps as myapp

i have also made entry in conf/server.xml

<context path="/myapp" docBase="myapp" debug="0">
</context>

then i shutdown and restarted the tomcat. still when i do http://ip/myapp it gives 404 error.

plz help
 
Ranch Hand
Posts: 1211
Mac IntelliJ IDE
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can start off looking at the logs generated by Tomcat, they are ususally in <Tomcat Home>/logs folder.
If you have Tomcat manager application installed, check if your webapp shows up in the list of apps running.
 
reply
    Bookmark Topic Watch Topic
  • New Topic