In-depth analysis of the Tomcat server of Centos 7 system

In-depth analysis of the Tomcat server of Centos 7 system

1. The origin of tomcat

Origin of the name: Tomcat was originally developed by James Duncan Davidson, a software architect at Sun. He later helped turn it into an open source project, which was contributed by Sun to the Apache Software Foundation. Since most of O'Reilly's open source projects will publish a related book, and the cover design will be a sketch of an animal, he hopes to name this project after an animal. Because he wanted the animal to be able to take care of itself, he eventually named it tomcat.

1. Tomcat application scenarios

Tomcat server is a free open source web application server. It is a lightweight application server and is widely used in small and medium-sized systems and in situations where there are not many concurrent users. It is the first choice for developing and testing JSP programs. Generally speaking, although Tomcat has the function of processing HTML pages like web servers such as Apache or Nginx, its ability to process static pages is far inferior to Apache or Nginx. Therefore, Tomcat is usually used as a servlet and JSP container and runs alone on the backend.

2. Dependent software required by Tomcat

JDK must be installed before installing Tomcat. JDK is a Java language software development kit provided free of charge by Sun, which contains the Java virtual machine (JVM). The written Java source program can be compiled into Java bytecode. As long as the JDK is installed, the JVM can be used to interpret these bytecode files, thus ensuring the cross-platform nature of Java.

In terms of platform compatibility, JDK, as a Java virtual machine that interprets bytecode files and calls the operating system's API to implement corresponding functions, is closely related to the operating system type and platform bitness, so there are different types of versions, and Tomcat also has these characteristics. (Centos 7.0 has JDK installed by default, and if it is a Centos 6.0 operating system, you need to install it yourself).

1) Check whether JDK is installed

[root@centos02 ~]# java -version
openjdk version "1.8.0_131"
OpenJDK Runtime Environment (build 1.8.0_131-b12)
OpenJDK 64-Bit Server VM (build 25.131-b12, mixed mode)

2) Install JDK on CentOS 6.0

[root@centos02 ~]# mount /dev/cdrom /mnt/ <!--Mount Linux CD-->
mount: /dev/sr0 is write-protected and will be mounted in read-only mode [root@centos02 ~]# tar zxvf /mnt/jdk-7u65-linux-x64.gz -C /usr/src/ 
  <!--Unzip the jdk package-->
[root@centos02 src]# ls
debug jdk1.7.0_65 kernels
[root@centos02 src]# mv jdk1.7.0_65/ /usr/src/java <!--Install JDK-->
[root@centos02 ~]# vim /etc/profile.d/java.sh<!--Configure jdk running environment variables-->
export JAVA_HOME=/usr/local/java
export PATH=$PATH:$JAVA_HOME/bin
[root@centos02 ~]# chmod +x /etc/profile.d/java.sh<!--Variables add execution permissions-->
[root@centos02 ~]# source /etc/profile.d/java.sh <!--Run JDK-->

2. Tomcat configuration instructions

1. Tomcat's main directory

The main directory of tomcat is /usr/local/tomcat8/.

[root@centos02 ~]# cd /usr/local/tomcat/
[root@centos02 tomcat]# ll
Total dosage 96
drwxr-xr-x 2 root root 4096 November 30 19:48 bin
drwxr-xr-x 3 root root 174 November 30 20:03 conf
drwxr-xr-x 2 root root 4096 Nov 30 19:48 lib
-rw-r--r-- 1 root root 56812 May 20, 2014 LICENSE
drwxr-xr-x 2 root root 197 November 30 19:51 logs
-rw-r--r-- 1 root root 1192 May 20, 2014 NOTICE
-rw-r--r-- 1 root root 8974 May 20, 2014 RELEASE-NOTES
-rw-r--r-- 1 root root 16204 May 20, 2014 RUNNING.txt
drwxr-xr-x 2 root root 30 November 30 19:48 temp
drwxr-xr-x 7 root root 81 May 20, 2014 webapps
drwxr-xr-x 3 root root 22 Nov 30 19:51 work

The main directories are described as follows:

|---bin/: Stores script files for starting and shutting down Tomcat on Windows or Linux platforms;
|---conf/: stores various global configuration files of Tomcat server, the most important of which are server.xml and web.xml;
|---lib/: stores the library files required for Tomcat to run;
|---logs/: stores the LOG files when Tomcat is executed;
|---webapps: Tomcat's main web publishing directory (including application examples);
|---work: stores the class files generated after JSP compilation;

2. Configuration file description

[root@centos02 tomcat]# ll conf/
Total dosage 200
drwxr-xr-x 3 root root 23 Nov 30 19:51 Catalina
-rw------ 1 root root 12257 May 20, 2014 catalina.policy
-rw------ 1 root root 6294 May 20, 2014 catalina.properties
-rw------ 1 root root 1394 May 20, 2014 context.xml
-rw------ 1 root root 3288 May 20, 2014 logging.properties
-rw------ 1 root root 6610 November 30 20:03 server.xml
-rw------ 1 root root 1530 May 20, 2014 tomcat-users.xml
-rw------ 1 root root 163385 May 20 2014 web.xml

The configuration file description is as follows:

catalina.policy: permission control configuration file;
catalina.properties: Tomcat property configuration file;
context.xml: context configuration file;
logging.properties: log related configuration files;
server.xml: main configuration file;
tomcat-users.xml: manager-gui management user configuration file (Tomcatt provides a manager-gui management interface after installation, and access can be enabled by configuring this file);
web.xml: Tomcat's servlet, servlet-mapping, filter, MIME and other related configurations;

3. Description of Tomcat main configuration file

server.xml is the main configuration file of Tomcat. By configuring this file, you can modify important functions of Tomcat, such as the startup port, website directory, virtual host, and enable https.

The entire server.xml consists of the following structure: <Server>, <Service>, <Connector /><Engine>, <Host>, <Context>, </Context></Host></Engine></Service> and </Server>.

The following is part of the default installation server.xml file, where the content in <!-- --> is comment information. //The number at the beginning is my own comment:

[root@Centos01 tomcat8]# vim conf/server.xml
<?xml version="1.0" encoding="UTF-8"?>
............ //Omit some content <Server port="8005" shutdown="SHUTDOWN">  
//Tomcat closes the port, which is open only to the local address by default. You can access it via Telnet 127.0.0.1 8005 on the local machine.
//Shut down Tomcat............ //Some content is omitted here<Connector port="8080" protocol="HTTP/1.1"
  connectionTimeout="20000"
  redirectPort="8443" />
//The default port number for Tomcat startup is 8080, which can be changed as needed.
............ //Some content is omitted here<!-- Define an AJP 1.3 Connector on port 8009 -->
 <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
//The default port number when Tomcat starts the AJP 1.3 connector. You can change it as needed............ //Some content is omitted here//The following is the configuration and log configuration when Tomcat defines a virtual host<Host name="localhost" appBase="webapps"
  unpackWARs="true" autoDeploy="true">

 <!-- SingleSignOn valve, share authentication between web applications
  Documentation at: /docs/config/valve.html -->
 <!--
 <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
 -->

 <!-- Access log processes all example.
  Documentation at: /docs/config/valve.html
  Note: The pattern used is equivalent to using pattern="common" -->
 <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
  prefix="localhost_access_log" suffix=".txt"
  pattern="%h %l %u %t "%r" %s %b" />

 </Host>
 </Engine>
 </Service>
</Server>

4. Description of the components of Tomcat server

1) Server

The server element represents the entire CatAlina servlet container.

2) Service

A Service is a collection of one or more Connectors and an Engine (responsible for processing all client requests received by the Connectors).

3) Connector

A Connector listens for client requests on a specified port, passes the received requests to the Engine for processing, obtains responses from the Engine and returns them to the client.

Tomcat has two typical Connectors, one that listens directly to http requests from browsers and one that listens to requests from other webservers.

Coyote HTTP/1.1 Connector listens on port 8080 for http requests from client browsers.

Coyote JK2 Connector listens at port 8009 and proxies servlet/jsp requests from other text servers (Apache).

4) Engine

Multiple virtual hosts can be configured under Engine, and each virtual host has a domain name.
When the Engine receives a request, it matches the request to a certain Host and then hands the request over to the host for processing.
The Engine has a default virtual host. When a request cannot be matched to any host, it will be handled by the default host.

5) Host

Host represents a virtual host, each virtual host matches a network domain name.
One or more web apps can be deployed under each virtual host. Each web app corresponds to a Context and has a Context path.

When the host receives a request, it will match the request to a certain Context, and then hand the request over to the Context for processing. The matching method is "longest match", so a Context with path=="" will become the default Context of the Host.
All requests that cannot match the path name of other Contexts will eventually match the default Context.

6) Context

A Context corresponds to a web application, and a web application consists of one or more servlets.

Summarize

The above is the Tomcat server of Centos 7 system introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Detailed explanation of the construction of a load balancing server based on Centos7+Nginx+Tomcat8
  • Tomcat installation tutorial under Linux centos7 environment
  • Detailed explanation of CentOS7.0 installation and configuration of Tomcat-7
  • How to intercept the specified Tomcat log to the specified file in CentOS7 according to the time period
  • How to modify server system time in CentOS7

<<:  Implementation of Bootstrap web page layout grid

>>:  MySQL 8.0.16 installation and configuration tutorial under Windows 10

Recommend

Several solutions for forgetting the MySQL password

Solution 1 Completely uninstall and delete all da...

Code to display the contents of a txt book on a web page

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML ...

Write a dynamic clock on a web page in HTML

Use HTML to write a dynamic web clock. The code i...

MySQL exposes Riddle vulnerability that can cause username and password leakage

The Riddle vulnerability targeting MySQL versions...

IIS7~IIS8.5 delete or modify the server protocol header Server

Requirements: Remove HTTP response headers in IIS...

Summary of CSS counter and content

The content property was introduced as early as C...

Research on the effect of page sidebar realized by JS

Table of contents Discover: Application of displa...

How to install vncserver in Ubuntu 20.04

Ubuntu 20.04 has been officially released in Apri...

Solutions to the problem of table nesting and border merging

【question】 When the outer table and the inner tab...

Explanation of the usage of replace and replace into in MySQL

MySQL replace and replace into are both frequentl...

JavaScript microtasks and macrotasks explained

Preface: js is a single-threaded language, so it ...

React Routing Link Configuration Details

1. Link's to attribute (1) Place the routing ...

The difference between z-index: 0 and z-index: auto in CSS

I've been learning about stacking contexts re...