`
z75148885
  • 浏览: 191540 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

Tomcat5下server.xml的解析

阅读更多
<!--ExampleServerConfigurationFile-->
<!--Tomcat服务器配置示例文件-->

<!--Notethatcomponentelementsarenestedcorrespondingtotheir
parent-childrelationshipswitheachother-->
<!--注意,这些组件的构成是根据相互之间的父子关系进行嵌套的。-->

<!--A"Server"isasingletonelementthatrepresentstheentireJVM,
whichmaycontainoneormore"Service"instances.TheServer
listensforashutdowncommandontheindicatedport.

Note:A"Server"isnotitselfa"Container",soyoumaynot
definesubcomponentssuchas"Valves"or"Loggers"atthislevel.
-->
<!--一个“Server”是一个提供完整的JVM的独立组件,它可以包含一个或多个
“Service”实例。服务器在指定的端口上监听shutdown命令。

注意:一个“Server”自身不是一个“Container”(容器),因此在这里你
不可以定义诸如“Valves”或者“Loggers”子组件
-->

<Serverport="8005"shutdown="SHUTDOWN"debug="0">


<!--CommenttheseentriesouttodisableJMXMBeanssupport-->
<!--这些指令组件关闭JMXMBeans支持-->

<!--Youmayalsoconfigurecustomcomponents(e.g.Valves/Realms)by
includingyourownmbean-descriptorfile(s),andsettingthe
"descriptors"attributetopointtoa';'seperatedlistofpaths
(intheClassLoadersense)offilestoaddtothedefaultlist.
e.g.descriptors="/com/myfirm/mypackage/mbean-descriptor.xml"
-->
<!--你也可以通过包含你自己的mbean描述文件配置自定义的组件,然后设置
“descriptors”属性为以“;”为分隔的文件名列表严将它添加到默认列表
中,例如:descriptors="/com/myfirm/mypackage/mbean-descriptor.xml"。
-->

<ListenerclassName="org.apache.catalina.mbeans.ServerLifecycleListener"
debug="0"/>
<ListenerclassName="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"
debug="0"/>

<!--GlobalJNDIresources-->
<!--全局JNDI资源-->
<GlobalNamingResources>

<!--Testentryfordemonstrationpurposes-->
<!--出于示例目的的测试入口-->
<Environmentname="simpleValue"type="java.lang.Integer"value="30"/>

<!--Editableuserdatabasethatcanalsobeusedby
UserDatabaseRealmtoauthenticateusers-->
<!--可编辑的,用来通过UserDatabaseRealm认证用户的用户数据库-->

<Resourcename="UserDatabase"auth="Container"
type="org.apache.catalina.UserDatabase"
description="Userdatabasethatcanbeupdatedandsaved">
</Resource>
<ResourceParamsname="UserDatabase">
<parameter>
<name>factory</name>
<value>org.apache.catalina.users.MemoryUserDatabaseFactory</value>
</parameter>
<parameter>
<name>pathname</name>
<value>conf/tomcat-users.xml</value>
</parameter>
</ResourceParams>

</GlobalNamingResources>

<!--A"Service"isacollectionofoneormore"Connectors"thatshare
asingle"Container"(andthereforethewebapplicationsvisible
withinthatContainer).Normally,thatContainerisan"Engine",
butthisisnotrequired.

Note:A"Service"isnotitselfa"Container",soyoumaynot
definesubcomponentssuchas"Valves"or"Loggers"atthislevel.
-->
<!--一个“Service”是一个或多个共用一个单独“Container”(容器)的“Connectors”
组合(因此,应用程序在容器中可见)。通常,这个容器是一个“Engine”
(引擎),但这不是必须的。

注意:一个“Service”自身不是一个容器,因此,在这个级别上你不可定义
诸如“Valves”或“Loggers”子组件。
-->

<!--DefinetheTomcatStand-AloneService-->
<!--定义Tomcat的标准独立服务-->
<Servicename="Catalina">

<!--A"Connector"representsanendpointbywhichrequestsarereceived
andresponsesarereturned.EachConnectorpassesrequestsontothe
associated"Container"(normallyanEngine)forprocessing.

Bydefault,anon-SSLHTTP/1.1Connectorisestablishedonport8080.
YoucanalsoenableanSSLHTTP/1.1Connectoronport8443by
followingtheinstructionsbelowanduncommentingthesecondConnector
entry.SSLsupportrequiresthefollowingsteps(seetheSSLConfig
HOWTOintheTomcat5documentationbundleformoredetailed
instructions):
*IfyourJDKversion1.3orprior,downloadandinstallJSSE1.0.2or
later,andputtheJARfilesinto"$JAVA_HOME/jre/lib/ext".
*Execute:
%JAVA_HOME%\bin\keytool-genkey-aliastomcat-keyalgRSA(Windows)
$JAVA_HOME/bin/keytool-genkey-aliastomcat-keyalgRSA(Unix)
withapasswordvalueof"changeit"forboththecertificateand
thekeystoreitself.

Bydefault,DNSlookupsareenabledwhenawebapplicationcalls
request.getRemoteHost().Thiscanhaveanadverseimpacton
performance,soyoucandisableitbysettingthe
"enableLookups"attributeto"false".WhenDNSlookupsaredisabled,
request.getRemoteHost()willreturntheStringversionofthe
IPaddressoftheremoteclient.
-->
<!--一个“Connector”(连接器)代表一个请求被接收和应答所需要的端点。每个连
接器通过相关的“Container”(容器)处理请求。

默认情况下,一个非SSL的HTTP/1.1的连接器被绑定在端口8080。你也可以通过
根据后面的使用说明并取消第二个连接器入口的注释,在端口8443上建立一个
SSLHTTP/1.1的连接器。开放SSL支持需要下面几步(参见Tomcat5文档中怎样
配置SSL的说明以取得更多的详细信息):
*如果你的JDK是1.3或1.3以前的版本,下载安装JSSE1.0.2或以后版本,并放
置JAR文件到“$JAVA_HOME/jre/lib/ext”目录下。
*带一个“changeit”的口令值执行:
%JAVA_HOME%\bin\keytool-genkey-aliastomcat-keyalgRSA(Windows)
$JAVA_HOME/bin/keytool-genkey-aliastomcat-keyalgRSA(UNIX)
来生成它自己的证书私钥。

默认情况下,当一个web应用程序调用请求时,DNS查询是可行的。这将对性能造
成一些不利的影响,因此,你可以将“enableLookups”设置为“false”来关闭DNS
查询。当DNS查询被关闭时,request.getRemoteHost()将返回包含远程客户IP地
址的字符串。
-->

<!--Defineanon-SSLCoyoteHTTP/1.1Connectoronport8080-->
<!--在8080端口上定义一个非SSL的HTTP/1.1连接器-->
<Connectorport="8080"
maxThreads="150"minSpareThreads="25"maxSpareThreads="75"
enableLookups="false"redirectPort="8443"acceptCount="100"
debug="0"connectionTimeout="20000"
disableUploadTimeout="true"/>
<!--Note:Todisableconnectiontimeouts,setconnectionTimeoutvalue
to0-->
<!--注意,要关闭连接超时,将connectionTimeout设置为0-->

<!--Note:Tousegzipcompressionyoucouldsetthefollowingproperties:

compression="on"
compressionMinSize="2048"
noCompressionUserAgents="gozilla,traviata"
compressableMimeType="text/html,text/xml"
-->
<!--注意:要使用gzip压缩需要设置如下属性:

compression="on"
compressionMinSize="2048"
noCompressionUserAgents="gozilla,traviata"
compressableMimeType="text/html,text/xml"
-->

<!--DefineaSSLCoyoteHTTP/1.1Connectoronport8443-->
<!--在端口8443上定义一个SSL的HTTP/1.1的连接器-->
<!--
<Connectorport="8443"
maxThreads="150"minSpareThreads="25"maxSpareThreads="75"
enableLookups="false"disableUploadTimeout="true"
acceptCount="100"debug="0"scheme="https"secure="true"
clientAuth="false"sslProtocol="TLS"/>
-->

<!--DefineaCoyote/JK2AJP1.3Connectoronport8009-->
<!--在端口8009上定义一个Coyote/JK2AJP1.3连接器-->
<Connectorport="8009"
enableLookups="false"redirectPort="8443"debug="0"
protocol="AJP/1.3"/>

<!--DefineaProxiedHTTP/1.1Connectoronport8082-->
<!--在8082端口上定义一个代理HTTP/1.1连接器-->
<!--Seeproxydocumentationformoreinformationaboutusingthis.-->
<!--参见代理文档以取得这里使用属性的更多的信息。-->
<!--
<Connectorport="8082"
maxThreads="150"minSpareThreads="25"maxSpareThreads="75"
enableLookups="false"
acceptCount="100"debug="0"connectionTimeout="20000"
proxyPort="80"disableUploadTimeout="true"/>
-->

<!--AnEnginerepresentstheentrypoint(withinCatalina)thatprocesses
everyrequest.TheEngineimplementationforTomcatstandalone
analyzestheHTTPheadersincludedwiththerequest,andpassesthem
ontotheappropriateHost(virtualhost).-->
<!--一个“Engine”(引擎)代表处理每个请求的入口点(在Catalina内)。这个Tomcat
的标准独立引擎实现分析包含在请求中的HTTP头信息,并将请求传送到适当的主机
或虚拟主机上。-->

<!--YoushouldsetjvmRoutetosupportload-balancingviaJK/JK2ie:
<Enginename="Standalone"defaultHost="localhost"debug="0"jvmRoute="jvm1">
-->
<!--你应该这样设置jvmRoute以便在JK/JK2通道上支持负载平衡:
<Enginename="Standalone"defaultHost="localhost"debug="0"jvmRoute="jvm1">
-->

<!--Definethetoplevelcontainerinourcontainerhierarchy-->
<!--在我们的容器体系中定义最高级别的容器-->
<Enginename="Catalina"defaultHost="localhost"debug="0">

<!--Therequestdumpervalvedumpsusefuldebugginginformationabout
therequestheadersandcookiesthatwerereceived,andtheresponse
headersandcookiesthatweresent,forallrequestsreceivedby
thisinstanceofTomcat.Ifyoucareonlyaboutrequeststoa
particularvirtualhost,oraparticularapplication,nestthis
elementinsidethecorresponding<Host>or<Context>entryinstead.

ForasimilarmechanismthatisportabletoallServlet2.4
containers,checkoutthe"RequestDumperFilter"Filterinthe
exampleapplication(thesourceforthisfiltermaybefoundin
"$CATALINA_HOME/webapps/examples/WEB-INF/classes/filters").

Requestdumpingisdisabledbydefault.Uncommentthefollowing
elementtoenableit.-->
<!--请求转储器值转储非常有用的通过Tomcat这个实例接收到的所有请求的,关于
接收到的请求头和cookies,以及发送出的回应头和cookies的调试信息。如果
你只在意一个特定的虚拟主机或者一个特定应用程序的请求,在对应的<Host>
或<Context>入口中套用这个元素。

对于所有的Servlet(小服务程序)2.4来所,在示例程序中检验
“RequestDumperFilter”过滤是非常容易的(这个过滤器源代码可以在
“$CATALINA_HOME/webapps/examples/WEB-INF/classes/filters”下找到。

请求转储默认情况下是关闭的,如果要使用它,取消下面行的注释符。-->
<!--
<ValveclassName="org.apache.catalina.valves.RequestDumperValve"/>
-->

<!--Globalloggerunlessoverriddenatlowerlevels-->
<!--全局日志设置,除非在更低的级别上覆盖它的设置-->
<LoggerclassName="org.apache.catalina.logger.FileLogger"
prefix="catalina_log."suffix=".txt"
timestamp="true"/>

<!--BecausethisRealmishere,aninstancewillbesharedglobally-->
<!--因为这个Realm(区域)在这儿,因此这个实例将被全局共享。-->

<!--ThisRealmusestheUserDatabaseconfiguredintheglobalJNDI
resourcesunderthekey"UserDatabase".Anyedits
thatareperformedagainstthisUserDatabaseareimmediately
availableforusebytheRealm.-->
<!--这个Realm(区域)使用在全局JNDI资源下,由“UserDatabase”配置的用户
数据库。通过使用Realm将使对于这个用户数据库的任何编辑都将会立即可用
<RealmclassName="org.apache.catalina.realm.UserDatabaseRealm"
debug="0"resourceName="UserDatabase"/>

<!--Commentouttheoldrealmbutleaveherefornowincasewe
needtogobackquickly-->
<!--注释掉旧有的Realm以便我们能很快速的恢复旧有配置。-->
<!--
<RealmclassName="org.apache.catalina.realm.MemoryRealm"/>
-->

<!--ReplacetheaboveRealmwithoneofthefollowingtogetaRealm
storedinadatabaseandaccessedviaJDBC-->
<!--下面的属性用于从储存在数据库或从JDBC通道中得到的Realm以取代上面的
Realm配置。-->

<!--
<RealmclassName="org.apache.catalina.realm.JDBCRealm"debug="99"
driverName="org.gjt.mm.mysql.Driver"
connectionURL="jdbc:mysql://localhost/authority"
connectionName="test"connectionPassword="test"
userTable="users"userNameCol="user_name"userCredCol="user_pass"
userRoleTable="user_roles"roleNameCol="role_name"/>
-->

<!--
<RealmclassName="org.apache.catalina.realm.JDBCRealm"debug="99"
driverName="oracle.jdbc.driver.OracleDriver"
connectionURL="jdbc:oracle:thin:@ntserver:1521:ORCL"
connectionName="scott"connectionPassword="tiger"
userTable="users"userNameCol="user_name"userCredCol="user_pass"
userRoleTable="user_roles"roleNameCol="role_name"/>
-->

<!--
<RealmclassName="org.apache.catalina.realm.JDBCRealm"debug="99"
driverName="sun.jdbc.odbc.JdbcOdbcDriver"
connectionURL="jdbc:odbc:CATALINA"
userTable="users"userNameCol="user_name"userCredCol="user_pass"
userRoleTable="user_roles"roleNameCol="role_name"/>
-->

<!--Definethedefaultvirtualhost
Note:XMLSchemavalidationwillnotworkwithXerces2.2.
-->
<!--定义默认的虚拟主机
注意:XML模式确认将不能与Xerces2.2同工作。
-->
<Hostname="localhost"debug="0"appBase="webapps"
unpackWARs="true"autoDeploy="true"
xmlValidation="false"xmlNamespaceAware="false">

<!--Definesaclusterforthisnode,
Bydefiningthiselement,meansthateverymanagerwillbechanged.
Sowhenrunningacluster,onlymakesurethatyouhavewebappsinthere
thatneedtobeclusteredandremovetheotherones.
Aclusterhasthefollowingparameters:
为这个结点定义一个群集,通过定义这个元素,意味着每个管理员都将被改变。
因此,当运行一个群集时,只有确认在必须被聚集和移除其他的地方有你的
web软件。
一个群集有下面这些参数:

className=thefullyqualifiednameoftheclusterclass
className=这个群集类的全限定名

name=adescriptivenameforyourcluster,canbeanything
name=你的群集的描述名,可以是任何描述

debug=thedebuglevel,highermeansmoreoutput
debug=调试级别,更高意味着更多的输出

mcastAddr=themulticastaddress,hastobethesameforallthenodes
mcastAddr=多播地址,所有的节点都必须有同样的多播地址

mcastPort=themulticastport,hastobethesameforallthenodes
mcastPort=多播端口,对所有的节点都必须有同样的多播端口

mcastBindAddr=bindthemulticastsockettoaspecificaddress
mcastBindAddr=绑定多播套接字到一个指定的地址

mcastTTL=themulticastTTLifyouwanttolimityourbroadcast
mcastTTL=多播生存期,如果你想要限制你的广播的话

mcastSoTimeout=themulticastreadtimeout
mcastSoTimeout=多播读取超时

mcastFrequency=thenumberofmillisecondsinbetweensendinga"I'malive"heartbeat
mcastFrequency=发送“I'malive”(我还活着)信息的间隔毫秒数

mcastDropTime=thenumberamillisecondsbeforeanodeisconsidered"dead"ifnoheartbeatisreceived
mcastDropTime=多长时间没有收到“I'malive”就将这个节点标识为死节点(单位:毫秒)

tcpThreadCount=thenumberofthreadstohandleincomingreplicationrequests,optimalwouldbethesameamountofthreadsasnodes
tcpThreadCount=用于处理重复引入请求的线程数,最好是每个节点都有相同的线程数

tcpListenAddress=thelistenaddress(bindaddress)forTCPclusterrequestonthishost,
incaseofmultipleethernetcards.
automeansthataddressbecomes
InetAddress.getLocalHost().getHostAddress()
tcpListenAddress=在有多块以太网卡的主机上的监听TCP群集请求的地址(绑定地址),
auto意味着地址由InetAddress.getLocalHost().getHostAddress()取得。

tcpListenPort=thetcplistenport
tcpListenPort=tcp监听端口

tcpSelectorTimeout=thetimeout(ms)fortheSelector.select()methodincasetheOS
hasawakupbuginjava.nio.Setto0fornotimeout
tcpSelectorTimeout=在操作系统中有java.nio唤醒错的情况下,使用Selector.select()的超时
毫秒数。设为0则没有超时限制

printToScreen=truemeansthatmanagerswillalsoprinttostd.out
printToScreen=true意味着管理员的相关信息也将打印输出到std.out

expireSessionsOnShutdown=truemeansthat
expireSessionsOnShutdown=true意味着?????

useDirtyFlag=truemeansthatweonlyreplicateasessionaftersetAttribute,removeAttributehasbeencalled.
falsemeanstoreplicatethesessionaftereachrequest.
falsemeansthatreplicationwouldworkforthefollowingpieceofcode:
<%
HashMapmap=(HashMap)session.getAttribute("map");
map.put("key","value");
%>
useDirtyFlag=true意味着我们只能在调用setAttribute,removeAttribute后才能复制一个会话;
false意味着在每个请求后复制会话。
false意味着复制将以下列代码方式工作:
<%
HashMapmap=(HashMap)session.getAttribute("map");
map.put("key","value");
%>

replicationMode=canbeeither'pooled','synchronous'or'asynchronous'.
*Pooledmeansthatthereplicationhappensusingseveralsocketsinasynchronousway.Ie,thedatagetsreplicated,thentherequestreturn.Thisisthesameasthe'synchronous'settingexceptitusesapoolofsockets,henceitismultithreaded.Thisisthefastestandsafestconfiguration.Tousethis,alsoincreasethenroftcpthreadsthatyouhavedealingwithreplication.
*Synchronousmeansthatthethreadthatexecutestherequest,isalsothe
threadthereplicatesthedatatotheothernodes,andwillnotreturnuntilall
nodeshavereceivedtheinformation.
*Asynchronousmeansthatthereisaspecific'sender'threadforeachclusternode,
sotherequestthreadwillqueuethereplicationrequestintoa"smart"queue,
andthenreturntotheclient.
The"smart"queueisaqueuewherewhenasessionisaddedtothequeue,andthesamesession
alreadyexistsinthequeuefromapreviousrequest,thatsessionwillbereplaced
inthequeueinsteadofreplicatingtworequests.Thisalmostneverhappens,unlessthereisa
largenetworkdelay.
replicationMode=可以是“pooled”、“synchronous”或者“asynchronous”
*Pooled意味着在多个套接字上同步进行复制。例如,先复制数据,然后请求返回。
这与“synchronous”相同,除了它使用一个套接字池,因此,它是多线程的。它是
最快和最高级的设置,使用这个配置也增加了处理复制的tcp线程的域。
*Synchronous指执行请求的线程,它也是向其他节点复制数据的线程,并且直到
所有的节点都己经收到信息后才返回。
*Asynchronous,对每个群集节点而言,这是一个特别的“sender”(发送者)线程,
因此请求线程将复制请求排队到一个小队列中,然后,返回给用户。
这个小队列是一个当会话被添加到队列中,而从先前的请求中,同一个会话己经存在
,这个会话将被放置在队列中以代替重复的两个请求。这几乎从不会发生,除非存在
较大的网络延迟。
-->
<!--
Whenconfiguringforclustering,youalsoaddinavalvetocatchalltherequests
comingin,attheendoftherequest,thesessionmayormaynotbereplicated.
Asessionisreplicatedifandonlyifalltheconditionsaremet:
1.useDirtyFlagistrueorsetAttributeorremoveAttributehasbeencalledAND
2.asessionexists(hasbeencreated)
3.therequestisnottrappedbythe"filter"attribute

Thefilterattributeistofilteroutrequeststhatcouldnotmodifythesession,
hencewedon'treplicatethesessionaftertheendofthisrequest.
Thefilterisnegative,ie,anythingyouputinthefilter,youmeantofilterout,
ie,noreplicationwillbedoneonrequeststhatmatchoneofthefilters.
Thefilterattributeisdelimitedby;,soyoucan'tescapeout;evenifyouwantedto.

filter=".*\.gif;.*\.js;"meansthatwewillnotreplicatethesessionafterrequestswiththeURI
endingwith.gifand.jsareintercepted.
-->
<!--当配置群集时,你也添加一个值来捕获所有传入的请求,在请求结束时,这个会话可能被子复制,
也可能不被复制。一个会话是否复制取决于下列条件是否发生:
1.useDirtyFlag为真,或者setAttribute或者removeAttribute己经被调用。
2.会话己经存在(己经被创建了)。
3.请求没有被“filter”属性所捕获。

这个filter(过滤器)属性用于过滤那些不能修改会话的请求,因此,我们在这个请求结束后不复制
会主。这个过滤器是消极的,例如,你向过滤器发送了一些东西,然后被过滤出去,在那个匹配的过
滤器上不会发生复制。
过滤器属性以分号为分隔,因此你不能换行,即使你想这么做。

filter=".*\.gif;.*\.js;"意味着在进行以.gif和.js结束的URI请求后不复制会话。

<!--
<ClusterclassName="org.apache.catalina.cluster.tcp.SimpleTcpCluster"
managerClassName="org.apache.catalina.cluster.session.DeltaManager"
expireSessionsOnShutdown="false"
useDirtyFlag="true">

<Membership
className="org.apache.catalina.cluster.mcast.McastService"
mcastAddr="228.0.0.4"
mcastPort="45564"
mcastFrequency="500"
mcastDropTime="3000"/>

<Receiver
className="org.apache.catalina.cluster.tcp.ReplicationListener"
tcpListenAddress="auto"
tcpListenPort="4001"
tcpSelectorTimeout="100"
tcpThreadCount="6"/>

<Sender
className="org.apache.catalina.cluster.tcp.ReplicationTransmitter"
replicationMode="pooled"/>

<ValveclassName="org.apache.catalina.cluster.tcp.ReplicationValve"
filter=".*\.gif;.*\.js;.*\.jpg;.*\.htm;.*\.html;.*\.txt;"/>
</Cluster>
-->



<!--Normally,usersmustauthenticatethemselvestoeachwebapp
individually.Uncommentthefollowingentryifyouwouldlike
ausertobeauthenticatedthefirsttimetheyencountera
resourceprotectedbyasecurityconstraint,andthenhavethat
useridentitymaintainedacross*all*webapplicationscontained
inthisvirtualhost.-->
<!--通常,对每一个应用程序,用户必须逐个的认证他们自己。当他们遇到被
某种安全约束所保护的资源时,如果你想让用户只在第一次被认证,那么,
取消下面入口行的注释,然后在这个虚拟主机中包含这个用户的,横跨所有
web应用程序的用户身份识别。-->

<!--
<ValveclassName="org.apache.catalina.authenticator.SingleSignOn"
debug="0"/>
-->

<!--Accesslogprocessesallrequestsforthisvirtualhost.By
default,logfilesarecreatedinthe"logs"directoryrelativeto
$CATALINA_HOME.Ifyouwish,youcanspecifyadifferent
directorywiththe"directory"attribute.Specifyeitherarelative
(to$CATALINA_HOME)orabsolutepathtothedesireddirectory.
-->
<!--这个虚拟主机的所有请求的访问日志过程。默认情况下,日志文件被创建在相对
于$CATALINA_HOME目录下的logs目录下。通过directory属性,你也可以指定一个
不同的目录,如果你想的话。可以使用相对路径(相对于$CATALINA_HOME),也
可以使用绝对路径。-->
<!--
<ValveclassName="org.apache.catalina.valves.AccessLogValve"
directory="logs"prefix="localhost_access_log."suffix=".txt"
pattern="common"resolveHosts="false"/>
-->

<!--LoggersharedbyallContextsrelatedtothisvirtualhost.By
default(whenusingFileLogger),logfilesarecreatedinthe"logs"
directoryrelativeto$CATALINA_HOME.Ifyouwish,youcanspecify
adifferentdirectorywiththe"directory"attribute.Specifyeithera
relative(to$CATALINA_HOME)orabsolutepathtothedesired
directory.-->
<!--与这个虚拟主机有关系所有上下文所共享的日志。默认情况下(使用FileLogger时),
日志文件被创建在相对于$CATALINA_HOME目录下的logs目录下。如果你希望,你也可
以给directory指定一个不同的路径。可以使用相对于$CATALINA_HOME的相对路径,也
可以使用绝对路径。
<LoggerclassName="org.apache.catalina.logger.FileLogger"
directory="logs"prefix="localhost_log."suffix=".txt"
timestamp="true"/>

</Host>

</Engine>

</Service>

</Server>
分享到:
评论

相关推荐

    tomcat配置文件web.xml与server.xml解析

    Tomcat 配置文件 web.xml 与 server.xml 解析 Tomcat 配置文件 web.xml 和 server.xml 是 Tomcat 自身的配置文件,用于配置 Tomcat 服务器的行为和性能。在本文中,我们将对 web.xml 和 server.xml 中的主要配置项...

    tomcat服务器的Server.xml配置详解.docx

    本文将深入解析Server.xml的结构和配置要素,帮助读者更好地理解和操作Tomcat服务器。 Server.xml文件是Tomcat的全局配置文件,它定义了服务器的基本架构,包括Server、Service、Connector和Engine等关键组件。下面...

    tomcat6 server.xml 详解

    《Tomcat6 server.xml 深度解析》 在Java Web开发中,Tomcat作为一款广泛应用的开源Servlet容器,其配置文件server.xml的重要性不言而喻。本文将深入探讨Tomcat6版本中的server.xml,揭示其中的核心配置元素,帮助...

    tomcat 配置文件 server.xml配置

    ### Tomcat Server.xml配置详解 在探讨`server.xml`配置文件之前,让我们先明确一点:`server.xml`是Apache Tomcat服务器的核心配置文件,它控制着Tomcat的启动、运行和停止过程。对于任何希望深入理解和优化Tomcat...

    tomcat的server.xml标签全解析.

    【Tomcat的Server.xml配置详解】 Tomcat作为广泛使用的Java Servlet容器,其核心配置文件`server.xml`扮演着至关重要的角色。它定义了Tomcat服务器的结构和行为,包括Server、Service、Engine、Host和Context等组件...

    Tomcat的server.xml文件

    《深入解析Tomcat的server.xml文件》 在Java Web开发中,Tomcat作为一个广泛应用的开源Servlet容器,扮演着至关重要的角色。它的配置核心在于`server.xml`文件,这是Tomcat服务器的主要配置文件,包含了服务器的...

    tomcat_server.xml_配置详解

    本文将详细解析`server.xml`中的关键元素、属性及其含义,帮助读者深入理解Tomcat的工作机制。 1. `&lt;Server&gt;`元素 `&lt;Server&gt;`元素是整个Tomcat实例的顶级容器,它由`org.apache.catalina.Server`接口定义。此元素...

    tomcatserver.xml配置详解.pdf

    根据提供的文件信息,可以看出文档内容是关于Tomcat服务器的配置文件server.xml的详细解读。server.xml是Tomcat中的核心配置文件,负责配置整个服务器的运行参数和连接器信息。下面将对Tomcat server.xml中可能包含...

    tomcat-server.xml详解

    本文将详细解析`tomcat-server.xml`中的主要元素和属性,帮助读者深入理解Tomcat的内部工作原理。 首先,`&lt;Server&gt;`元素是整个配置的顶级容器,它定义了Tomcat实例的基本属性。通过`port`属性设置服务器监听关闭...

    tomcat server.xml的典型配置

    《Tomcat Server.xml的典型配置与优化》 在Java Web应用服务器中,Tomcat以其轻量级、高效能和易用性受到了广泛欢迎。而Server.xml文件是Tomcat的核心配置文件,它定义了服务器的各个组件及其配置,包括端口设置、...

    tomcat server.xml 配置

    ### Tomcat Server.xml 配置详解 #### 一、引言 在当今互联网技术领域,Apache Tomcat作为一款开源的应用服务器,在Java Web开发中扮演着举足轻重的角色。它支持运行Servlet和JSP,是Java Web应用部署的常用平台之...

    详细解读server.xml文件

    本文将深入解析`server.xml`文件中的各个元素及其重要性,帮助你更好地理解和管理你的Tomcat服务器。 首先,`server.xml`位于Tomcat的`conf`目录下,它是整个服务器配置的起点。文件结构主要由以下几个部分组成: ...

    server.xml常用配置详解.docx

    `server.xml` 文件是 Tomcat 服务器的核心配置文件之一,主要用于控制 Tomcat 的运行。此外,在 JBoss 服务器中,其 Web 容器实际上是基于 Tomcat 的封装,因此 `server.xml` 也扮演着重要的角色。通常情况下,可以...

    tomcatserver.xml详解.pdf

    根据提供的文件信息,内容涉及到Apache Tomcat的配置文件server.xml的详细解析。server.xml是Tomcat服务器的核心配置文件,它定义了Tomcat服务器的各种组件,如连接器(Connector)、服务(Service)、引擎(Engine...

    Tomcat6不修改server.xml设置虚拟目录的方法

    首先,在 Tomcat 文件夹的 conf\catalina\localhost 目录下(对于 Tomcat6 版本及其以上,需要自己创建 catalina 和 localhost 这两个文件夹),增加一个名为 project.xml 的文件(该文件名的 project 要和下面的...

    tomcat_server.xml_配置详解.doc

    《深入解析Tomcat Server.xml配置文件》 在Java Web应用的开发与部署中,Apache Tomcat作为一款开源的Servlet容器,扮演着至关重要的角色。它的灵活性和可定制性,很大程度上依赖于`server.xml`配置文件。本文将对`...

    tomcat server.xml元素详细说明

    《深入解析Tomcat Server.xml配置元素》 在深入探索Tomcat服务器的核心配置文件server.xml之前,我们有必要了解其重要性。作为Apache Tomcat服务器的主要配置文件,server.xml控制着Tomcat服务器的几乎所有方面,从...

    Tomcat的配置文件server.xml中各个域的说明及相关配置.pdf

    《深入解析Tomcat配置文件server.xml》 Tomcat作为一款广泛应用的开源Java Servlet容器,其配置文件`server.xml`是管理Tomcat服务器的核心文件。本文将详细解析`server.xml`中涉及的主要元素及其配置,帮助读者理解...

    基于tomcat配置文件server.xml详解

    下面将详细解析`server.xml`中的关键元素和配置。 1. **Server**: 这是Tomcat服务器的顶级元素,包含服务器启动和关闭的端口设置,如`port="8005"`是管理端口,用于关闭服务器,`shutdown="SHUTDOWN"`是关闭命令。 ...

Global site tag (gtag.js) - Google Analytics