A couple question s for you would be:
Are you on a Windows machine or a Unix/Linux machine?
What are you using tomcat for?
- servlets/JSPs
- just goofing around
- static html ...
Are you familiar with any other servlet containers or web servers?
The best place to get started is to define your environment variables:
- JAVA_HOME (the directory in which your JAVA JDK is installed)
- CATALINA_HOME (the directory in which tomcat is installed)
Then you can run <CATALINA_HOME>\bin\startup.bat (assuming a windows install) or <CATALINA_HOME>/bin/startup.sh (assuming a Unix/Linux install)
Tomcat has an "examples" web application that you can test and goof around with. After you start Tomcat, it is accessible at "
If you're going to build your own Java web application, you will be well off purchasing a good book on the topic. Two that I recommend are:
- Professional Apache Tomcat (Wrox Press)
- Tomcat the Definitive Guide (O'Reilly)