翼度科技»论坛 云主机 服务器技术 查看内容

Tomcat主配置文件server.xml详解

7

主题

7

帖子

21

积分

新手上路

Rank: 1

积分
21
前言

Tomcat主配置文件(server.xml)是Tomcat服务器的主要配置文件,文件位置在conf目录下,它包含了Tomcat的全局配置信息,包括监听端口、虚拟主机、安全配置、连接器等。

1 server.xml组件类别

顶级组件:位于整个配置的顶层。如:server。

  • 容器类组件:可以包含其他组件的组件。如:service、engine、host、context。
  • 连接器组件:连接用户请求至Tomcat。如:connector。
  • 被嵌套类组件:位于一个容器中,不能包含其他组件。如value、logger。

2 组件介绍

组件名称
功能介绍
engine
核心容器组件,定义Tomcat服务器内部的容器,与Service元素一起定义了Tomcat服务器的整体架构。catalina引擎,负责通过connector接收用户请求,并处理请求,将请求转至对应的虚拟主机host。
host
类似于httpd中的虚拟主机,一般而言支持基于FQDN的虚拟主机,允许在同一台服务器上运行多个网站或应用程序。
context
定义一个应用程序的上下文,包括Web应用程序的路径、名称、文档根目录等,是一个最内层的容器类组件(不能再嵌套)。配置context的主要目的指定对应的webapp的根目录,类似于httpd的alias,其还能为webapp指定额外的属性,如部署方式等。
connector
定义Tomcat服务器与外部应用程序或客户端之间的连接,接收用户请求,通常用于HTTP或HTTPS通讯,类似于httpd的listen配置监听端口。
Service
定义Tomcat服务器提供的服务,通常包含一个或多个Connector(连接器),但只能有一个引擎engine。
Server
定义Tomcat服务器的全局属性,其中的port属性定义了Tomcat服务器本身监听的端口号。
Valve
通过提供不同类型的阀门,拦截请求并在将其转至对应的webapp前进行某种处理操作,可以用于任何容器中,比如记录日志(access log valve)、基于IP做访问控制(remote address filter valve),实现对Tomcat服务器的访问控制、流量控制、日志记录等功能。
loggor
日志记录器,用于记录组件内部的状态信息,可以用于除context外的任何容器中。
Realm
定义Tomcat服务器的安全认证和授权机制。可以用于任意容器类的组件中,关联一个用户认证库,实现认证和授权。可以关联的认证库有: UserDatabaseRealm(使用JNDI自定义的用户认证库)、MemoryRealm(认证信息定义在tomcat-users.xml中)和JDBCRealm(认证信息定义在数据库中,并通过JDBC连接至数据库中查找认证用户)。

3 server.xml配置文件详解

server.xml 文件原版:
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3.   Licensed to the Apache Software Foundation (ASF) under one or more
  4.   contributor license agreements.  See the NOTICE file distributed with
  5.   this work for additional information regarding copyright ownership.
  6.   The ASF licenses this file to You under the Apache License, Version 2.0
  7.   (the "License"); you may not use this file except in compliance with
  8.   the License.  You may obtain a copy of the License at

  9.       http://www.apache.org/licenses/LICENSE-2.0

  10.   Unless required by applicable law or agreed to in writing, software
  11.   distributed under the License is distributed on an "AS IS" BASIS,
  12.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.   See the License for the specific language governing permissions and
  14.   limitations under the License.
  15. -->
  16. <!-- Note:  A "Server" is not itself a "Container", so you may not
  17.      define subcomponents such as "Valves" at this level.
  18.      Documentation at /docs/config/server.html
  19. -->
  20. <Server port="8005" shutdown="SHUTDOWN">
  21.   <Listener className="org.apache.catalina.startup.VersionLoggerListener" />
  22.   <!-- Security listener. Documentation at /docs/config/listeners.html
  23.   <Listener className="org.apache.catalina.security.SecurityListener" />
  24.   -->
  25.   <!-- APR library loader. Documentation at /docs/apr.html -->
  26.   <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
  27.   <!-- Prevent memory leaks due to use of particular java/javax APIs-->
  28.   <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
  29.   <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
  30.   <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />

  31.   <!-- Global JNDI resources
  32.        Documentation at /docs/jndi-resources-howto.html
  33.   -->
  34.   <GlobalNamingResources>
  35.     <!-- Editable user database that can also be used by
  36.          UserDatabaseRealm to authenticate users
  37.     -->
  38.     <Resource name="UserDatabase" auth="Container"
  39.               type="org.apache.catalina.UserDatabase"
  40.               description="User database that can be updated and saved"
  41.               factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
  42.               pathname="conf/tomcat-users.xml" />
  43.   </GlobalNamingResources>

  44.   <!-- A "Service" is a collection of one or more "Connectors" that share
  45.        a single "Container" Note:  A "Service" is not itself a "Container",
  46.        so you may not define subcomponents such as "Valves" at this level.
  47.        Documentation at /docs/config/service.html
  48.    -->
  49.   <Service name="Catalina">

  50.     <!--The connectors can use a shared executor, you can define one or more named thread pools-->
  51.     <!--
  52.     <Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
  53.         maxThreads="150" minSpareThreads="4"/>
  54.     -->


  55.     <!-- A "Connector" represents an endpoint by which requests are received
  56.          and responses are returned. Documentation at :
  57.          Java HTTP Connector: /docs/config/http.html
  58.          Java AJP  Connector: /docs/config/ajp.html
  59.          APR (HTTP/AJP) Connector: /docs/apr.html
  60.          Define a non-SSL/TLS HTTP/1.1 Connector on port 8080
  61.     -->
  62.     <Connector port="8080" protocol="HTTP/1.1"
  63.                connectionTimeout="20000"
  64.                redirectPort="8443"
  65.                maxParameterCount="1000"
  66.                />
  67.     <!-- A "Connector" using the shared thread pool-->
  68.     <!--
  69.     <Connector executor="tomcatThreadPool"
  70.                port="8080" protocol="HTTP/1.1"
  71.                connectionTimeout="20000"
  72.                redirectPort="8443"
  73.                maxParameterCount="1000"
  74.                />
  75.     -->
  76.     <!-- Define an SSL/TLS HTTP/1.1 Connector on port 8443
  77.          This connector uses the NIO implementation. The default
  78.          SSLImplementation will depend on the presence of the APR/native
  79.          library and the useOpenSSL attribute of the AprLifecycleListener.
  80.          Either JSSE or OpenSSL style configuration may be used regardless of
  81.          the SSLImplementation selected. JSSE style configuration is used below.
  82.     -->
  83.     <!--
  84.     <Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"
  85.                maxThreads="150" SSLEnabled="true"
  86.                maxParameterCount="1000"
  87.                >
  88.         <SSLHostConfig>
  89.             <Certificate certificateKeystoreFile="conf/localhost-rsa.jks"
  90.                          type="RSA" />
  91.         </SSLHostConfig>
  92.     </Connector>
  93.     -->
  94.     <!-- Define an SSL/TLS HTTP/1.1 Connector on port 8443 with HTTP/2
  95.          This connector uses the APR/native implementation which always uses
  96.          OpenSSL for TLS.
  97.          Either JSSE or OpenSSL style configuration may be used. OpenSSL style
  98.          configuration is used below.
  99.     -->
  100.     <!--
  101.     <Connector port="8443" protocol="org.apache.coyote.http11.Http11AprProtocol"
  102.                maxThreads="150" SSLEnabled="true"
  103.                maxParameterCount="1000"
  104.                >
  105.         <UpgradeProtocol className="org.apache.coyote.http2.Http2Protocol" />
  106.         <SSLHostConfig>
  107.             <Certificate certificateKeyFile="conf/localhost-rsa-key.pem"
  108.                          certificateFile="conf/localhost-rsa-cert.pem"
  109.                          certificateChainFile="conf/localhost-rsa-chain.pem"
  110.                          type="RSA" />
  111.         </SSLHostConfig>
  112.     </Connector>
  113.     -->

  114.     <!-- Define an AJP 1.3 Connector on port 8009 -->
  115.     <!--
  116.     <Connector protocol="AJP/1.3"
  117.                address="::1"
  118.                port="8009"
  119.                redirectPort="8443"
  120.                maxParameterCount="1000"
  121.                />
  122.     -->

  123.     <!-- An Engine represents the entry point (within Catalina) that processes
  124.          every request.  The Engine implementation for Tomcat stand alone
  125.          analyzes the HTTP headers included with the request, and passes them
  126.          on to the appropriate Host (virtual host).
  127.          Documentation at /docs/config/engine.html -->

  128.     <!-- You should set jvmRoute to support load-balancing via AJP ie :
  129.     <Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1">
  130.     -->
  131.     <Engine name="Catalina" defaultHost="localhost">

  132.       <!--For clustering, please take a look at documentation at:
  133.           /docs/cluster-howto.html  (simple how to)
  134.           /docs/config/cluster.html (reference documentation) -->
  135.       <!--
  136.       <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>
  137.       -->

  138.       <!-- Use the LockOutRealm to prevent attempts to guess user passwords
  139.            via a brute-force attack -->
  140.       <Realm className="org.apache.catalina.realm.LockOutRealm">
  141.         <!-- This Realm uses the UserDatabase configured in the global JNDI
  142.              resources under the key "UserDatabase".  Any edits
  143.              that are performed against this UserDatabase are immediately
  144.              available for use by the Realm.  -->
  145.         <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
  146.                resourceName="UserDatabase"/>
  147.       </Realm>

  148.       <Host name="localhost"  appBase="webapps"
  149.             unpackWARs="true" autoDeploy="true">

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

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

  161.       </Host>
  162.     </Engine>
  163.   </Service>
  164. </Server>
复制代码
将原文件中英文注释行删掉并添加了中文详解注释。
  1. <?xml version="1.0" encoding="UTF-8"?>

  2. <Server> 元素代表整个容器,是Tomcat实例的顶层元素,由org.apache.catalina.Server接口来定义,它包含一个<Service>元素,并且它不能做为任何元素的子元素。
  3. port 指定Tomcat监听shutdown命令端口,终止服务器运行时,必须在Tomcat服务器所在的机器上发出shutdowm命令,该属性是必须的,其端口号可以修改。
  4. shutdown 指定终止Tomcat服务器运行时,发给Tomcat服务器的shutdown监听端口的字符串,该属性必须设置。
  5. <Server port="8005" shutdown="SHUTDOWN">
  6.   <Listener className="org.apache.catalina.startup.VersionLoggerListener" />
  7.   <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
  8.   <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
  9.   <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
  10.   <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />
  11.   <GlobalNamingResources>
  12.     <Resource name="UserDatabase" auth="Container"
  13.               type="org.apache.catalina.UserDatabase"
  14.               description="User database that can be updated and saved"
  15.               factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
  16.               pathname="conf/tomcat-users.xml" />
  17.   </GlobalNamingResources>
复制代码
Service服务组件
  1. <Service name="Catalina">
复制代码
Connector主要参数
  1. <Connector port="8080" protocol="HTTP/1.1"
  2.                connectionTimeout="20000"
  3.                redirectPort="8443"
  4.                maxParameterCount="1000"
  5.                />
复制代码
Engine 核心容器组件,catalina引擎,负责通过connector接收用户请求,并处理请求,将请求转至对应的虚拟主机host。
defaultHost 指定缺省的处理请求的主机名,它至少与其中的一个host元素的name属性值一样。
  1. <Engine name="Catalina" defaultHost="localhost">
复制代码
Realm 表示存放的用户名、密码及role的数据库。
  1.       <Realm className="org.apache.catalina.realm.LockOutRealm">
  2.         <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
  3.                resourceName="UserDatabase"/>
  4.       </Realm>
复制代码
host参数
  1.       <Host name="localhost"  appBase="webapps"
  2.             unpackWARs="true" autoDeploy="true">
  3.         <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
  4.                prefix="localhost_access_log" suffix=".txt"
  5.                pattern="%h %l %u %t &quot;%r&quot; %s %b" />

  6.       </Host>
  7.     </Engine>
  8.   </Service>
  9. </Server>
复制代码
4 主要参数详解


4.1 Connector主要参数详解

Connector是Tomcat服务器与外部应用程序或客户端之间的连接,常见的Connector类型包括HTTP、HTTPS、AJP等。

参数
参数说明
Connector
定义Tomcat服务器与外部应用程序或客户端之间的连接,接收用户请求,通常用于HTTP或HTTPS通讯,类似于httpd的listen配置监听端口。
port
指定Connector监听的端口号,用于监听来自客户端的请求。
protocol
连接器使用的协议,指定Connector要使用的协议类型,常见的有HTTP/1.1、HTTP/2、AJP/1.3等。
connectionTimeout
指定超时的时间数(以毫秒为单位),即在指定时间内未收到客户端请求,则连接被关闭。
redirectPort
指定重定向端口,即在使用HTTPS时,自动将HTTP请求重定向到HTTPS。
maxParameterCount
最大可以创建的处理请求的线程数。

4.2 host参数详解

在Tomcat中,一个物理服务器可以部署多个虚拟主机,每个虚拟主机拥有自己的域名和独立的配置,这些虚拟主机通过Host元素来实现。

参数
参数说明
host
Server元素的子元素,代表一个虚拟主机
name
虚拟主机的名称
appBase
指定该虚拟主机的Web应用程序的基础目录,Web应用程序在该目录下部署。
unpackWARs
是否在部署Web应用程序时解压WAR文件,可以提高Web应用程序的访问速度。
autoDeploy
是否自动部署新的Web应用程序,如果设置为true,则Tomcat会自动检测appBase目录下的新的Web应用程序,并进行自动部署。

4.3 Context参数说明

在Tomcat中,Context参数是指一个Web应用程序的上下文信息,它包含了Web应用程序的配置信息、资源、Servlet等。当一个Web应用程序被部署到Tomcat服务器上时,Tomcat会为该Web应用程序创建一个Context对象,用于管理Web应用程序的运行时状态。
参数
参数说明
Context
表示一个web应用程序,通过为war文件。
docBase
表示Web应用程序的根目录,即Web应用程序的发布目录。应用程序的路径或者是WAR文件存放的路径,也可以使用相对路径,起始路径为此Context所属Host中appBase定义的路径。
path
表示Web应用程序的上下文路径,即访问该Web应用程序的URL路径。
reloadable
这个属性非常重要,如果为true,则tomcat会白动检测应用程序的/WEB-INF/lib和/WEB-INF/classes目录的变化,自动装载新的应用程序,可以在不重启tomcat的情况下改变应用程序。
crossContext
用于指定不同的Web应用程序之间是否可以共享ServletContext对象。如果crossContext被设置为true,则表示允许跨上下文共享ServletContext对象,否则不允许。
到此这篇关于Tomcat主配置文件server.xml详解的文章就介绍到这了,更多相关Tomcat server.xml内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

来源:https://www.jb51.net/server/321115kwi.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具