search
HomeOperation and MaintenanceApacheHow to install apache tomcat on linux

How to install apache tomcat on linux

Aug 09, 2019 am 11:16 AM
apachelinuxtomcat

How to install apache tomcat on linux

Apache Tomcat, also known as Tomcat server, is an open source java servlet cotainer & provides a pure JAVA http webserver environmnet to run java code. It is very famous and widely used for running Java based websites all over the world. Apache Tomcat software powers a large number of mission-critical web applications across a wide range of industries and organizations.

Apache Tomcat can be used in various operating systems, such as Linux, Unix, Windows, etc. Apache Tomcat recently announced the end of life for the Tomcat 8.0.x version, although this will not affect the 8.5.x version.

How to install apache tomcat on linux?

In this tutorial, we will discuss the Apache Tomcat installation of v8.5, as it is the latest stable version (v9 is also available, which is still in BETA at the time of writing and does not currently have a stable version) .

Requirements

To install Tomcat 8.5, we will need JAVA 7 or higher. So first we need to install and setup JAVA on our system. You can install JAVA using the following command,

CentOS/RHEL
$ sudo yum install java-1.8.0
Ubuntu/Debian
$ sudo apt-get install openjdk-8*

Apache Tomcat Installation

For Apache Tomcat installation, we will use the following command to download the archived package from the official website,

$ wget http://redrockdigimark.com/apachemirror/tomcat/tomcat-8/v8.5.23/bin/apache-tomcat-8.5.23.tar.gz

Once the file has finished downloading, unzip the package in the /opt directory (we can also use some other directories/data etc.). Run the following command in the terminal to extract the files,

$ tar -xvzf pache-tomcat-8.5.23.tar.gz -C /opt
$ mv /opt/apache-tomcat-8.5.23/ /opt/tomcat

Now Apache Tomcat is ready, but before we do that, we need to assign certificates to access tomcat's 'Manager' and 'GUI' pages, which are by default There is no username and password set. In order to verify the credentials we will use the '/opt/tomcat/conf/tomcat-users.xml' file,

$ vim /opt/tomcat/conf/tomcat-users.xml

and make the following entries to the file,

<role rolename=”manager-gui” />
<user username=”manager” password=”Password@123″ roles=”manager-gui” />
<role rolename=”admin-gui” />
<user username=”admin” password=”Password@123″ roles=”admin-gui” />

Make sure you are in the tag " Make these entries before tomcat-users" i.e. make the above entries before the lines mentioned below.

<tomcat-users xmlns=”http://tomcat.apache.org/xml”
xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”
xsi:schemaLocation=”http://tomcat.apache.org/xml tomcat-users.xsd”
version=”1.0″>

After completion, save the file and exit.

We need to make another change, although this is completely optional and completely depends on how you access the manager page. We can only access the management page from the browser on the local host, but we need to access it on other remote machines, we need to modify "context.html" for manager to comment out those lines that disable remote login,

$ vi /opt/tomcat/webapps/manager/META-INF/context.xml
<Context antiResourceLocking=”false” privileged=”true” >
<!– <Valve className=”org.apache.catalina.valves.RemoteAddrValve”
allow=”127\.\d+\.\d+\.\d+|::1|0:0:0:0:0:0:0:1″ /> –>
</Context>

The same applies to the host-manager context file,

$ vi /opt/tomcat/webapps/host-manager/META-INF/context.xml
<Context antiResourceLocking=”false” privileged=”true” >
<!– <Valve className=”org.apache.catalina.valves.RemoteAddrValve”
allow=”127\.\d+\.\d+\.\d+|::1|0:0:0:0:0:0:0:1″ /> –>
 </Context>

We are now ready to start the tomcat server, go to the /opt/tomcat/bin folder and run the script named "startup.sh",

$ cd /opt/tomcat/bin
$ sh startup.sh

How to install apache tomcat on linux

Apache Tomcat will start with the following output,

Now open a web browser of your choice and access the Apache Tomcat UI using the following URL,

http://192.168.1.100:8080

How to install apache tomcat on linux

Here, 192.168.1.100 is the IP address of the apache tomcat server. We will now be directed to the page below, where we can access the "Manager" and "Host Manager" pages by clicking on the corresponding tabs. After clicking on any tab we will be asked to authenticate in order to access the page. We need to enter the credentials we set up before to access the page.

How to install apache tomcat on linuxFor more Apache related knowledge, please visit the

Apache Usage Tutorial

column!

The above is the detailed content of How to install apache tomcat on linux. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What Defined Apache? Its Core FunctionalityWhat Defined Apache? Its Core FunctionalityMay 09, 2025 am 12:21 AM

The core function of Apache is modular design and high customization, allowing it to meet various web service needs. 1. Modular design allows for extended functions by loading different modules. 2. Supports multiple operating systems and is suitable for different environments. 3. Multi-process, multi-threaded and event-driven models improve performance. 4. The basic usage includes configuring the virtual host and document root directory. 5. Advanced usage involves URL rewriting, load balancing and reverse proxying. 6. Common errors can be debugged through syntax checking and log analysis. 7. Performance optimization includes adjusting MPM settings and enabling cache.

Apache's Continued Use: Web Hosting and BeyondApache's Continued Use: Web Hosting and BeyondMay 08, 2025 am 12:15 AM

What makes Apache still popular in modern web environments is its powerful capabilities and flexibility. 1) Modular design allows custom functions such as security certification and load balancing. 2) Support multiple operating systems to enhance popularity. 3) Efficiently handle concurrent requests, suitable for various application scenarios.

Apache: From Open Source to Industry StandardApache: From Open Source to Industry StandardMay 07, 2025 am 12:05 AM

The reasons why Apache has developed from an open source project to an industry standard include: 1) community-driven, attracting global developers to participate; 2) standardization and compatibility, complying with Internet standards; 3) business support and ecosystem, and obtaining enterprise-level market support.

Apache's Legacy: Impact on Web HostingApache's Legacy: Impact on Web HostingMay 06, 2025 am 12:03 AM

Apache's impact on Webhosting is mainly reflected in its open source features, powerful capabilities and flexibility. 1) Open source features lower the threshold for Webhosting. 2) Powerful features and flexibility make it the first choice for large websites and businesses. 3) The virtual host function saves costs. Although performance may decline in high concurrency conditions, Apache remains competitive through continuous optimization.

Apache: The History and Contributions to the WebApache: The History and Contributions to the WebMay 05, 2025 am 12:14 AM

Originally originated in 1995, Apache was created by a group of developers to improve the NCSAHTTPd server and become the most widely used web server in the world. 1. Originated in 1995, it aims to improve the NCSAHTTPd server. 2. Define the Web server standards and promote the development of the open source movement. 3. It has nurtured important sub-projects such as Tomcat and Kafka. 4. Facing the challenges of cloud computing and container technology, we will focus on integrating with cloud-native technologies in the future.

Apache's Impact: Shaping the InternetApache's Impact: Shaping the InternetMay 04, 2025 am 12:05 AM

Apache has shaped the Internet by providing a stable web server infrastructure, promoting open source culture and incubating important projects. 1) Apache provides a stable web server infrastructure and promotes innovation in web technology. 2) Apache has promoted the development of open source culture, and ASF has incubated important projects such as Hadoop and Kafka. 3) Despite the performance challenges, Apache's future is still full of hope, and ASF continues to launch new technologies.

The Legacy of Apache: A Look at Its Impact on Web ServersThe Legacy of Apache: A Look at Its Impact on Web ServersMay 03, 2025 am 12:03 AM

Since its creation by volunteers in 1995, ApacheHTTPServer has had a profound impact on the web server field. 1. It originates from dissatisfaction with NCSAHTTPd and provides more stable and reliable services. 2. The establishment of the Apache Software Foundation marks its transformation into an ecosystem. 3. Its modular design and security enhance the flexibility and security of the web server. 4. Despite the decline in market share, Apache is still closely linked to modern web technologies. 5. Through configuration optimization and caching, Apache improves performance. 6. Error logs and debug mode help solve common problems.

Apache's Purpose: Serving Web ContentApache's Purpose: Serving Web ContentMay 02, 2025 am 12:23 AM

ApacheHTTPServer continues to efficiently serve Web content in modern Internet environments through modular design, virtual hosting functions and performance optimization. 1) Modular design allows adding functions such as URL rewriting to improve website SEO performance. 2) Virtual hosting function hosts multiple websites on one server, saving costs and simplifying management. 3) Through multi-threading and caching optimization, Apache can handle a large number of concurrent connections, improving response speed and user experience.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software