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:
How to Convert PDF files to HTML filesTranslates pdf documents into html format.Translates pdf files into HTML or XML formats, combined with png images. Supports encrypted pdf files.There … Read More
How to enable DVD Playback in your ubuntu SystemDVD playback is not a feature that is installed by default due to license restrictions. This will show you how to install DVD playback capability on y… Read More
How to enable Moodbar in Amarok Music PlayerAmarok is a sound system-independent audio-player for *nix systems. Its interface uses a powerful “browser” metaphor that allows you to create playlis… Read More
Installing Microsoft Fonts in UbuntuYou may want to install Microsoft Truetype fonts in Ubuntu for any reason. It's very simple. All you need to do in your Ubuntu Gutsy Gibbon 7.10 is to… Read More
How to Crack pdf File Passwordyou want to crack pdf file passwords use pdfcrack.PDFCrack is a GNU/Linux (other POSIX-compatible systems should work too) tool for recovering passwor… Read More
1 comments:
I have just installed Tomcat 6 on my Ubuntu, thank you guidance on this install.
Post a Comment