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 Record Video Using VLC in Ubuntu / Debian VLC can also used for recording videos during Playback. But, By default the record button is hidden in VLC. First you have to enable the Record Butt… Read More
Howto Access / Install Device Manager in Ubuntu 9.10 Karmic koala There is not an application like Windows Device Manager Ubuntu. Gnome-Device-Manager is the Ubuntu equivalent for the Windows Device Manager applica… Read More
how to Root login in Ubuntu 10.04Ubuntu root access was blocked by default for GUI. For Enabling This you need to reset password for root. once password for root is reset. You can lo… Read More
Speed up Ubuntu Linux - Fine tuning UbuntuSpeed launch your Ubuntu using the following steps Stop unnecessary Applications and Services that start automatically at boot time. First Stop the… Read More
Play Sony Handicam files ( .m2ts ) in Ubuntu Linux MT2S files are generally used with Sony formats and hardware, particularly Blu-ray Disc and AVCHD. Camcorders make use of M2TS in the form of AVCHD, … Read More
1 comments:
I have just installed Tomcat 6 on my Ubuntu, thank you guidance on this install.
Post a Comment