INSTALLING APACHE TOMCAT FOR UBUNTU 1. Install the following packages: * java6 (you should already have this) * tomcat6 * ant 2. Check if tomcat is running (port 8080): http://localhost:8080/ 3. Add user/password for administration: sudo gedit /etc/tomcat6/tomcat-users.xml Add inside and the following lines: 4. Restart tomcat: sudo /etc/init.d/tomcat6 restart 5. Try the manager (credentials michael/michael): http://localhost:8080/manager/html -> Check out the examples directory (Servlets and JSPs) 6. Create your own application: set environment: export CATALINA_HOME=/usr/share/tomcat6 http://tomcat.apache.org/tomcat-6.0-doc/appdev/processes.html Note: you do not need to do the csv part Tutorial: http://tomcat.apache.org/tomcat-6.0-doc/appdev/index.html