| Apache Wicket > Index > Setup Tomcat |
| Homepage: | http://tomcat.apache.org/ |
| Download: | http://tomcat.apache.org/download-60.cgi |
| File(s): | apache-tomcat-6.0.20.tar.gz (5.7 MB) |
For developing Wicket-webapplications a runtime server is necessary. The easiest setup uses the embedded (in an extra JAR-file) Jetty server. But you also can use Apache Tomcat, which may be more familiar for some developers.
Linux:
$ cd ~ $ tar xvfz DOWNLOADS/apache-tomcat-6.0.20.tar.gz
Ubuntu:
$ nano ~/.bashrc
...
export CATALINA_HOME="/home/ralf/apache-tomcat-6.0.20"
$ source ~/.bashrc
$ echo $CATALINA_HOME
~/apache-tomcat-6.0.20