If you are running Ubuntu and want to use the Tomcat servlet runner, Some times the apt will not work correctly. You can try the following method it will work.
Before you installing Tomcat you must install Java. I would assume if you are trying to install Tomcat you've already installed java, otherwise install Java as per my previous posting. If you aren't sure about your Java installation, you can check with the dpkg command like so:
dpkg --get-selections | grep sun-java
This will give you this output if you already installed java:
sun-java6-bin install
sun-java6-jdk install
sun-java6-jre install
Installation
Now we'll download and extract Tomcat from the apache site.
wget http://apache.hoxt.com/tomcat/tomcat-6/v6.0.18/bin/apache-tomcat-6.0.18.tar.gz
tar xvzf apache-tomcat-6.0.18.tar.gz
The best thing to do is move the tomcat folder to a permanent location. I chose /usr/local/tomcat, but you could move it somewhere else if you wanted to.
sudo mv apache-tomcat-6.0.18 /usr/local/tomcat
Tomcat requires setting the JAVA_HOME variable. The best way to do this is to set it in your .bashrc file. You could also edit your startup.sh file if you so chose.
The better method is editing your .bashrc file and adding the bolded line there. You'll have to logout of the shell for the change to take effect.
vi ~/.bashrc
Add the following line:
export JAVA_HOME=/usr/lib/jvm/java-6-sun
At this point you can start tomcat by just executing the startup.sh script in the tomcat/bin folder.
How to install Tomcat 6 on Ubuntu
Related Posts:
Howto Rip DVD in Ubuntu Linux : Thoggen Thoggen is DVD ripping utility for Linux based on GTK+ It has a very nice Graphical front end •Supports title preview, picture cropping, and pictu… Read More
Mirror Your Remote Server Graphically with Grsync in Ubuntu Linux rsync is an open source utility that provides fast incremental file transfer. rsync uses the "rsync algorithm" which provides a very fast method syn… Read More
How to Create CDs and DVDs with Menu in Ubuntu 10.10 : DeVeDe DeVeDe is a program to create video DVDs and CDs (VCD, SVCD or CVD), suitable for home players, from any video files in any of the formats supported … Read More
Install Mozilla Firefox 4 in Ubuntu LinuxIf possible remove the older version first. Now You can start Firefox 4 Installation 1. Open Synaptic Package Manager and add the Firefox PPA to the … Read More
How to play DVD Movies in Ubuntu Linux 10.10 Ubuntu 9.04, 9.10, 10.04 (i386, amd64) and 10.10 Install the libdvdread4 package (no need to add third party repositories) via Synaptic or command … Read More
1 comments:
I have just installed Tomcat 6 on my Ubuntu, thank you guidance on this install.
Post a Comment