• 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

how to get apache tomcat working for manual deployment after unzip the downloaded folder

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i m a novoice with java servlets & want to know detai;ed steps for installing tomcat & getting it started
 
Ranch Hand
Posts: 2458
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Just read the documentation that come along with Tomcat.
This is a good starting point: http://tomcat.apache.org/tomcat-6.0-doc/index.html
 
Ranch Hand
Posts: 952
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Just extract it anywhere you want.

Suppose: C:\tomcat6

Set environment variable CATALINA_HOME=C:\tomcat6 and add a new entry for PATH=........;%CATALINA_HOME%\bin;

Where to set these environment variable?
Right click on my computer -->properties-->advanced tab--->environment variable button-->user variables section.

Now run--->cmd

type tomcat6.exe
It will start your tomcat.

Open your browser and type: http://localhost:8080/
It will show you tomcat page.

Now your tomcat is working.


 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic