Detailed explanation of the functions of each port of Tomcat

Detailed explanation of the functions of each port of Tomcat

From the tomcat configuration file, we can see that three ports are started by default when tomcat is started, namely 8080 (8443), 8009, and 8005.

Port 8080 (8443)

<Connector port="80" protocol="HTTP/1.1"
   connectionTimeout="20000"
   redirectPort="8443" />

This should be the one we are most familiar with. It is often used in daily development and testing. The Connector is used to listen to requests sent by the browser. After setting it to 80, you can directly use http://localhost to access it.

http protocol, where redirectPort means that if an https request is sent, the request will be sent to port 8443.

8443 is the default https listening port, which is not enabled by default. If you want to enable it, you need to generate and specify the certificate yourself in addition to uncommenting it because Tomcat does not come with its own certificate.

Port 8009

<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />

When Nginx, Apache, etc. are used as reverse proxies for Tomcat, you can use the ajp protocol to reverse proxy to this port.
Although we often use http reverse proxy to port 8080, ajp is more efficient than http in reverse proxy because ajp usually maintains a tcp connection for a long time after establishing it, thus reducing the overhead of Http repeatedly connecting and disconnecting tcp.

Port 8005

<Server port="8005" shutdown="SHUTDOWN">

The shutdown port that Tomcat listens to means that this port is responsible for listening for requests to shut down Tomcat.

When shutdown.sh is executed to shut down Tomcat, it connects to port 8005 and executes the SHUTDOWN command. Therefore, we directly use telnet to execute SHUTDOWN on port 8005 to shut down Tomcat. This is also a more orthodox way to shut down. If this port is not being monitored, the sh script is invalid.

In fact, ports 8005 and 8009 are not necessary, especially since SHUTDOWN listens on 127.0.0.1 by default. However, connecting to this port and sending SHUTDOWN can shut down Tomcat without any verification, which poses a security risk.

The AJP port is used to interact with the application server, such as Apache connecting to Tomcat, etc. It is generally not used during development and can be disabled.

Disabling method:

AJP port, just comment out the configuration line in the server.xml file.

The SHUTDOWN port is written in the server parameters. It will be useless if you remove it directly. It will also be started by default. It is generally recommended to change the port to another port and SHUTDOWN to other complex strings during security settings.

In fact, this port can be directly blocked and not listened to. When setting, just change the port value to -1.

<Server port="-1" shutdown="SHUTDOWN">

server.xml configuration file

<!-- Attribute Description port: specifies a port that listens for requests to shut down Tomcat shutdown: the command string sent to the above port to shut down the server -->
<Server port="8005" shutdown="SHUTDOWN">

 <Listener className="org.apache.catalina.core.AprLifecycleListener" />
 <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" />
 <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
 <Listener className="org.apache.catalina.storeconfig.StoreConfigLifecycleListener"/>

 <GlobalNamingResources>
 <Environment name="simpleValue" type="java.lang.Integer" value="30"/>
 <Resource name="UserDatabase" auth="Container"
  type="org.apache.catalina.UserDatabase"
  description="User database that can be updated and saved"
  factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
  pathname="conf/tomcat-users.xml" />
 </GlobalNamingResources>

 <Service name="Catalina">
 <!--
  Connector element:
  Defined by the Connector interface. The <Connector> element represents the component that actually interacts with the client program. It is responsible for receiving client requests and returning response results to the client.

  Attribute Description:
  port: The port number of the server connector, which will listen for requests from clients on the specified port.
  enableLookups: If true, you can get the actual host name of the remote client by calling request.getRemoteHost() to perform a DNS query; if false, no DNS query is performed, but its IP address is returned.
  redirectPort: The port number to which the server redirects after receiving an SSL transport request while processing an http request.
  acceptCount: When all available threads for processing requests are used up, the number of requests that can be placed in the processing queue. Requests exceeding this number will not be processed and a Connection refused error will be returned.
  connectionTimeout: The number of milliseconds to wait for timeout.
  maxThreads: Sets the maximum number of threads listening on the port. This value also determines the maximum number of client requests that the server can respond to simultaneously. The default value is 200.
  protocol: must be set to AJP/1.3 protocol.
  address: If the server has more than two IP addresses, this property can set the IP address that the port listens on. By default, the port will listen on all IP addresses on the server.
  minProcessors: The number of threads created when the server starts to process requests. Each request is handled by one thread.
  maxProcessors: The maximum number of threads that can be created to process requests.
  minSpareThreads: minimum spare threads.
  maxSpareThreads: Maximum spare threads.
  debug: log level.
  disableUploadTimeout: Disable upload timeout, mainly used for uploading large data.
 -->
 <Connector port="8080" maxHttpHeaderSize="8192"
    maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
    enableLookups="false" redirectPort="8443" acceptCount="100"
    connectionTimeout="20000" disableUploadTimeout="true" />


 <!-- Responsible for establishing connections with other HTTP servers. This connector is needed when integrating Tomcat with other HTTP servers. -->
 <Connector port="8009" 
    enableLookups="false" redirectPort="8443" protocol="AJP/1.3" />


 <!-- 
  Each Service element can only have one Engine element. The element processes client requests received by all <Connector> elements in the same <Service>. Attribute description:
  name: corresponds to Catalina in $CATALINA_HOME/config/Catalina;
  defaultHost: corresponds to the name attribute in the Host element, that is, localhost in $CATALINA_HOME/config/Catalina/localhost, the default virtual host name for processing requests, which has the same value as the name attribute of at least one of the Host elements debug: log level -->
 <Engine name="Catalina" defaultHost="localhost">

  <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
    resourceName="UserDatabase"/>
  <!--
  Defined by the Host interface. An Engine element can contain multiple <Host> elements.
  Each <Host> element defines a virtual host. It contains one or more web applications.

  Attribute Description:
   name: In this example, it is always emphasized as the localhost virtual host name in $CATALINA_HOME/config/Catalina/localhost debug: It is the debug level of the log appBase: The default application path, that is, put the application in a directory and automatically deploy the application when autoDeploy is true This path is relative to $CATALINA_HOME/ (the base directory of web applications)
   unpackWARs: Set to true to unpack the WAR file when the web application is *.war. If true, Tomcat will automatically unpack the WAR file; otherwise, it will not unpack and run the application directly from the WAR file.
   autoDeploy: The default value is true, which means that if a new web application is placed in appBase and Tomcat is running, the application will be automatically loaded.
  <Host name="localhost" appBase="webapps"
   unpackWARs="true" autoDeploy="true"
   xmlValidation="false" xmlNamespaceAware="false">
  <!-- 
   Attribute Description:
   path: The access URI, such as: http://localhost/ is the root directory of my application, and accessing this application will be done using: http://localhost/demm. This element is required.
    Indicates the URL prefix of this web application, used to match a Context. The requested URL is in the form of http://localhost:8080/path/*
   docBase: The directory of the WEB application. This directory must comply with the Java WEB application specifications, the web application file storage path or the WAR file storage path.
   debug: log level reloadable: whether to reload when the program is modified. Setting it to true will affect performance, but the modified file can be automatically loaded.
    If true, Tomcat will support hot deployment and will automatically detect changes in the /WEB-INF/lib and /WEB-INF/classes directories of the web application.
    Automatically load new JSP and Servlet, we can change the web application without restarting Tomcat
  -->
  <Context path="/demm" docBase="E:\\projects\\demm\\WebRoot" debug="0" reloadable="true"></Context>
  </Host>
 </Engine>
 </Service>
</Server>

This is the end of this article about the detailed explanation of the functions of each port of Tomcat. For more information about the functions of Tomcat ports, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to change the tomcat port number in Linux
  • Detailed explanation of the reasons and solutions for IDEA starting tomcat port occupation (using debug mode)
  • How to modify the port configuration in Tomcat service
  • How to modify the port number of Tomcat 6.x in MyEclipse
  • How to modify the default port number 8080 of Tomcat
  • Tomcat shows that port 8080 is occupied. Graphical solution

<<:  Use of vuex namespace

>>:  Knowledge about MySQL Memory storage engine

Recommend

Detailed explanation of three relationship examples of MySQL foreign keys

This article uses examples to describe the three ...

How does Vue implement communication between components?

Table of contents 1. Communication between father...

Detailed explanation of the role of the new operator in Js

Preface Js is the most commonly used code manipul...

How to implement batch deletion of large amounts of data in MySQL large tables

The question is referenced from: https://www.zhih...

JavaScript+html to implement front-end page sliding verification (2)

This article example shares the specific code of ...

How to choose between MySQL CHAR and VARCHAR

Table of contents VARCHAR and CHAR Types Conclusi...

Nginx handles http request implementation process analysis

Nginx first decides which server{} block in the c...

MySQL slow_log table cannot be modified to innodb engine detailed explanation

background Getting the slow query log from mysql....

MySQL database terminal - common operation command codes

Table of contents 1. Add users 2. Change the user...

Examples of correct use of interface and type methods in TypeScript

Table of contents Preface interface type Appendix...

Detailed explanation of Vue's TodoList case

<template> <div id="root"> ...

How to add links to FLASH in HTML and make it compatible with all major browsers

Look at the code first Copy code The code is as fo...

MySQL dual-machine hot standby implementation solution [testable]

Table of contents 1. Concept 2. Environmental Des...