The Apache Tomcat software is an open source which helps to run Java Servlet, JavaServer Pages, Java Expression Language and Java Web-socket technologies. For your better understanding apache tomcat is a web server that serves JSP pages.
Apache Tomcat is trademark of the Apache Software Foundation.
In this articles we are going to install Apache Tomcat through source file on /usr/local/ directory. Where we going to run our web server. The default port for Apache Tomcat is 8080.
Installing from source used to be very common and also quite simple. You would download the source file, unpack it (with either zip or tar), then issue the commands to the the directory you want to install it.
Requirements to Run Apache Tomcat server:
Java to be installed, There is a single requirement for Apache tomcat that is, your server should be installed with Java or JDK.
Installing Java:
We are going to install the Oracle JDK through apt-get, which is the official version distributed by Oracle, you will need to follow a few more steps.
Adding the Repository:
First, add Oracle's PPA, then update your package repository.
$ add-apt-repository ppa:webupd8team/java
$ apt-get update
Then, depending on the version you want to install, use the following commands:
For JDK 8,
For Java 8 use the following command,
$ apt-get install oracle-java8-installer
For JDK 9,
For Java 9 use the following command,
$ apt-get install oracle-java9-installer
You can also install different version of Java according to your requirements. Click here for setting up it.
Installing Tomcat:
1.Downloading the source package:
Get the source file for the desired version from the official website of Apache, where you can find the latest version. click here to download latest package
You can either download or wget the file (tar.gz and zip are available for Linux).
Now you have all set to run a Tomcat server. Start the application using the below commands.
$ /usr/local/tomcat/bin/startup.sh
For your note use shutdown.sh to stop the process.
$ /usr/local/tomcat/bin/shutdown.sh
After starting the tomcat enter the IP of the server or 127.0.0.1( if it is installed in local system) with the port 8080 on your browser. You can view the Tomcat default page on your browser.
Log into the "Manager App" or "Host manager" using the credentials that you have provided on the tomcat-users.xml file.
Now you have successfully installed and configured customized Apache Tomcat on your system.
For Tomcat-8, Tomcat-7 and older versions click here.
Comments