[Tomcat] Configuration (server.xml inside)

Configuration (server.xml inside) [Tomcat] - Java - Programmation

Marsh Posté le 23-04-2004 à 11:16:59    

Salut :hello:  
 
Y'a un truc que je ne comprends pas.
 
Quand j'installe Tomcat, pourquoi il n'y a aucun contexte de déclaré dans le web.xml.
 
Pourtant, il y a bien tous les exemple qui fonctionnent...
 
Ci-joint le fichier :
 

Code :
  1. - <!--  Example Server Configuration File
  2.   -->
  3. - <!--
  4. Note that component elements are nested corresponding to their
  5.      parent-child relationships with each other
  6.   -->
  7. - <!--
  8. A "Server" is a singleton element that represents the entire JVM,
  9.      which may contain one or more "Service" instances.  The Server
  10.      listens for a shutdown command on the indicated port.
  11.      Note:  A "Server" is not itself a "Container", so you may not
  12.      define subcomponents such as "Valves" or "Loggers" at this level.
  13.   -->
  14. - <Server port="8005" shutdown="SHUTDOWN" debug="0">
  15. - <!--  Comment these entries out to disable JMX MBeans support
  16.   -->
  17. - <!--
  18. You may also configure custom components (e.g. Valves/Realms) by
  19.        including your own mbean-descriptor file(s), and setting the
  20.        "descriptors" attribute to point to a ';' seperated list of paths
  21.        (in the ClassLoader sense) of files to add to the default list.
  22.        e.g. descriptors="/com/myfirm/mypackage/mbean-descriptor.xml"
  23.  
  24.   -->
  25.   <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" debug="0" />
  26.   <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" debug="0" />
  27. - <!--  Global JNDI resources
  28.   -->
  29. - <GlobalNamingResources>
  30. - <!--  Test entry for demonstration purposes
  31.   -->
  32.   <Environment name="simpleValue" type="java.lang.Integer" value="30" />
  33. - <!--
  34. Editable user database that can also be used by
  35.          UserDatabaseRealm to authenticate users
  36.   -->
  37.   <Resource name="UserDatabase" auth="Container" type="org.apache.catalina.UserDatabase" description="User database that can be updated and saved" />
  38. - <ResourceParams name="UserDatabase">
  39. - <parameter>
  40.   <name>factory</name>
  41.   <value>org.apache.catalina.users.MemoryUserDatabaseFactory</value>
  42.   </parameter>
  43. - <parameter>
  44.   <name>pathname</name>
  45.   <value>conf/tomcat-users.xml</value>
  46.   </parameter>
  47.   </ResourceParams>
  48.   </GlobalNamingResources>
  49. - <!--
  50. A "Service" is a collection of one or more "Connectors" that share
  51.        a single "Container" (and therefore the web applications visible
  52.        within that Container).  Normally, that Container is an "Engine",
  53.        but this is not required.
  54.        Note:  A "Service" is not itself a "Container", so you may not
  55.        define subcomponents such as "Valves" or "Loggers" at this level.
  56.  
  57.   -->
  58. - <!--  Define the Tomcat Stand-Alone Service
  59.   -->
  60. - <Service name="Catalina">
  61. - <!--
  62. A "Connector" represents an endpoint by which requests are received
  63.          and responses are returned.  Each Connector passes requests on to the
  64.          associated "Container" (normally an Engine) for processing.
  65.          By default, a non-SSL HTTP/1.1 Connector is established on port 8080.
  66.          You can also enable an SSL HTTP/1.1 Connector on port 8443 by
  67.          following the instructions below and uncommenting the second Connector
  68.          entry.  SSL support requires the following steps (see the SSL Config
  69.          HOWTO in the Tomcat 5 documentation bundle for more detailed
  70.          instructions):
  71.          * If your JDK version 1.3 or prior, download and install JSSE 1.0.2 or
  72.            later, and put the JAR files into "$JAVA_HOME/jre/lib/ext".
  73.          * Execute:
  74.              %JAVA_HOME%\bin\keytool -genkey -alias tomcat -keyalg RSA (Windows)
  75.              $JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA  (Unix)
  76.            with a password value of "changeit" for both the certificate and
  77.            the keystore itself.
  78.          By default, DNS lookups are enabled when a web application calls
  79.          request.getRemoteHost().  This can have an adverse impact on
  80.          performance, so you can disable it by setting the
  81.          "enableLookups" attribute to "false".  When DNS lookups are disabled,
  82.          request.getRemoteHost() will return the String version of the
  83.          IP address of the remote client.
  84.    
  85.   -->
  86. - <!--  Define a non-SSL Coyote HTTP/1.1 Connector on port 8080
  87.   -->
  88.   <Connector port="8080" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" debug="0" connectionTimeout="20000" disableUploadTimeout="true" />
  89. - <!--
  90. Note : To disable connection timeouts, set connectionTimeout value
  91.      to 0
  92.   -->
  93. - <!--
  94. Note : To use gzip compression you could set the following properties :
  95.      compression="on"
  96.      compressionMinSize="2048"
  97.      noCompressionUserAgents="gozilla, traviata"
  98.      compressableMimeType="text/html,text/xml"
  99.   -->
  100. - <!--  Define a SSL Coyote HTTP/1.1 Connector on port 8443
  101.   -->
  102. - <!--
  103.     <Connector port="8443"
  104.                maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
  105.                enableLookups="false" disableUploadTimeout="true"
  106.                acceptCount="100" debug="0" scheme="https" secure="true"
  107.                clientAuth="false" sslProtocol="TLS" />
  108.    
  109.   -->
  110. - <!--  Define a Coyote/JK2 AJP 1.3 Connector on port 8009
  111.   -->
  112.   <Connector port="8009" enableLookups="false" redirectPort="8443" debug="0" protocol="AJP/1.3" />
  113. - <!--  Define a Proxied HTTP/1.1 Connector on port 8082
  114.   -->
  115. - <!--  See proxy documentation for more information about using this.
  116.   -->
  117. - <!--
  118.     <Connector port="8082"
  119.                maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
  120.                enableLookups="false"
  121.                acceptCount="100" debug="0" connectionTimeout="20000"
  122.                proxyPort="80" disableUploadTimeout="true" />
  123.    
  124.   -->
  125. - <!--
  126. An Engine represents the entry point (within Catalina) that processes
  127.          every request.  The Engine implementation for Tomcat stand alone
  128.          analyzes the HTTP headers included with the request, and passes them
  129.          on to the appropriate Host (virtual host).
  130.   -->
  131. - <!--
  132. You should set jvmRoute to support load-balancing via JK/JK2 ie :
  133.     <Engine name="Standalone" defaultHost="localhost" debug="0" jvmRoute="jvm1">       
  134.    
  135.   -->
  136. - <!--  Define the top level container in our container hierarchy
  137.   -->
  138. - <Engine name="Catalina" defaultHost="localhost" debug="0">
  139. - <!--
  140. The request dumper valve dumps useful debugging information about
  141.            the request headers and cookies that were received, and the response
  142.            headers and cookies that were sent, for all requests received by
  143.            this instance of Tomcat.  If you care only about requests to a
  144.            particular virtual host, or a particular application, nest this
  145.            element inside the corresponding <Host> or <Context> entry instead.
  146.            For a similar mechanism that is portable to all Servlet 2.4
  147.            containers, check out the "RequestDumperFilter" Filter in the
  148.            example application (the source for this filter may be found in
  149.            "$CATALINA_HOME/webapps/examples/WEB-INF/classes/filters" ).
  150.            Request dumping is disabled by default.  Uncomment the following
  151.            element to enable it.
  152.   -->
  153. - <!--
  154.       <Valve className="org.apache.catalina.valves.RequestDumperValve"/>
  155.      
  156.   -->
  157. - <!--  Global logger unless overridden at lower levels
  158.   -->
  159.   <Logger className="org.apache.catalina.logger.FileLogger" prefix="catalina_log." suffix=".txt" timestamp="true" />
  160. - <!--  Because this Realm is here, an instance will be shared globally
  161.   -->
  162. - <!--
  163. This Realm uses the UserDatabase configured in the global JNDI
  164.            resources under the key "UserDatabase".  Any edits
  165.            that are performed against this UserDatabase are immediately
  166.            available for use by the Realm. 
  167.   -->
  168.   <Realm className="org.apache.catalina.realm.UserDatabaseRealm" debug="0" resourceName="UserDatabase" />
  169. - <!--
  170. Comment out the old realm but leave here for now in case we
  171.            need to go back quickly
  172.   -->
  173. - <!--
  174.       <Realm className="org.apache.catalina.realm.MemoryRealm" />
  175.      
  176.   -->
  177. - <!--
  178. Replace the above Realm with one of the following to get a Realm
  179.            stored in a database and accessed via JDBC
  180.   -->
  181. - <!--
  182.       <Realm  className="org.apache.catalina.realm.JDBCRealm" debug="99"
  183.              driverName="org.gjt.mm.mysql.Driver"
  184.           connectionURL="jdbc:mysql://localhost/authority"
  185.          connectionName="test" connectionPassword="test"
  186.               userTable="users" userNameCol="user_name" userCredCol="user_pass"
  187.           userRoleTable="user_roles" roleNameCol="role_name" />
  188.      
  189.   -->
  190. - <!--
  191.       <Realm  className="org.apache.catalina.realm.JDBCRealm" debug="99"
  192.              driverName="oracle.jdbc.driver.OracleDriver"
  193.           connectionURL="jdbc:oracle:thin:@ntserver:1521:ORCL"
  194.          connectionName="scott" connectionPassword="tiger"
  195.               userTable="users" userNameCol="user_name" userCredCol="user_pass"
  196.           userRoleTable="user_roles" roleNameCol="role_name" />
  197.      
  198.   -->
  199. - <!--
  200.       <Realm  className="org.apache.catalina.realm.JDBCRealm" debug="99"
  201.              driverName="sun.jdbc.odbc.JdbcOdbcDriver"
  202.           connectionURL="jdbc:odbc:CATALINA"
  203.               userTable="users" userNameCol="user_name" userCredCol="user_pass"
  204.           userRoleTable="user_roles" roleNameCol="role_name" />
  205.      
  206.   -->
  207. - <!--
  208. Define the default virtual host
  209.            Note: XML Schema validation will not work with Xerces 2.2.
  210.      
  211.   -->
  212. - <Host name="localhost" debug="0" appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false">
  213. - <!--
  214. Defines a cluster for this node,
  215.              By defining this element, means that every manager will be changed.
  216.              So when running a cluster, only make sure that you have webapps in there
  217.              that need to be clustered and remove the other ones.
  218.              A cluster has the following parameters:
  219.              className = the fully qualified name of the cluster class
  220.              name = a descriptive name for your cluster, can be anything
  221.              debug = the debug level, higher means more output
  222.              mcastAddr = the multicast address, has to be the same for all the nodes
  223.              mcastPort = the multicast port, has to be the same for all the nodes
  224.              mcastFrequency = the number of milliseconds in between sending a "I'm alive" heartbeat
  225.              mcastDropTime = the number a milliseconds before a node is considered "dead" if no heartbeat is received
  226.              tcpThreadCount = the number of threads to handle incoming replication requests, optimal would be the same amount of threads as nodes
  227.              tcpListenAddress = the listen address (bind address) for TCP cluster request on this host,
  228.                                 in case of multiple ethernet cards.
  229.                                 auto means that address becomes
  230.                                 InetAddress.getLocalHost().getHostAddress()
  231.              tcpListenPort = the tcp listen port
  232.              tcpSelectorTimeout = the timeout (ms) for the Selector.select() method in case the OS
  233.                                   has a wakup bug in java.nio. Set to 0 for no timeout
  234.              printToScreen = true means that managers will also print to std.out
  235.              expireSessionsOnShutdown = true means that
  236.              useDirtyFlag = true means that we only replicate a session after setAttribute,removeAttribute has been called.
  237.                             false means to replicate the session after each request.
  238.                             false means that replication would work for the following piece of code:
  239.                             <%
  240.                             HashMap map = (HashMap)session.getAttribute("map" );
  241.                             map.put("key","value" );
  242.                             %>
  243.              replicationMode = can be either 'pooled', 'synchronous' or 'asynchronous'.
  244.                                * Pooled means that the replication happens using several sockets in a synchronous way. Ie, the data gets replicated, then the request return. This is the same as the 'synchronous' setting except it uses a pool of sockets, hence it is multithreaded. This is the fastest and safest configuration. To use this, also increase the nr of tcp threads that you have dealing with replication.
  245.                                * Synchronous means that the thread that executes the request, is also the
  246.                                thread the replicates the data to the other nodes, and will not return until all
  247.                                nodes have received the information.
  248.                                * Asynchronous means that there is a specific 'sender' thread for each cluster node,
  249.                                so the request thread will queue the replication request into a "smart" queue,
  250.                                and then return to the client.
  251.                                The "smart" queue is a queue where when a session is added to the queue, and the same session
  252.                                already exists in the queue from a previous request, that session will be replaced
  253.                                in the queue instead of replicating two requests. This almost never happens, unless there is a
  254.                                large network delay.
  255.        
  256.   -->
  257. - <!--
  258.             When configuring for clustering, you also add in a valve to catch all the requests
  259.             coming in, at the end of the request, the session may or may not be replicated.
  260.             A session is replicated if and only if all the conditions are met:
  261.             1. useDirtyFlag is true or setAttribute or removeAttribute has been called AND
  262.             2. a session exists (has been created)
  263.             3. the request is not trapped by the "filter" attribute
  264.             The filter attribute is to filter out requests that could not modify the session,
  265.             hence we don't replicate the session after the end of this request.
  266.             The filter is negative, ie, anything you put in the filter, you mean to filter out,
  267.             ie, no replication will be done on requests that match one of the filters.
  268.             The filter attribute is delimited by ;, so you can't escape out ; even if you wanted to.
  269.             filter=".*\.gif;.*\.js;" means that we will not replicate the session after requests with the URI
  270.             ending with .gif and .js are intercepted.
  271.        
  272.   -->
  273. - <!--
  274.         <Cluster className="org.apache.catalina.cluster.tcp.SimpleTcpCluster"
  275.                  managerClassName="org.apache.catalina.cluster.session.DeltaManager"
  276.                  expireSessionsOnShutdown="false"
  277.                  useDirtyFlag="true">
  278.             <Membership
  279.                 className="org.apache.catalina.cluster.mcast.McastService"
  280.                 mcastAddr="228.0.0.4"
  281.                 mcastPort="45564"
  282.                 mcastFrequency="500"
  283.                 mcastDropTime="3000"/>
  284.             <Receiver
  285.                 className="org.apache.catalina.cluster.tcp.ReplicationListener"
  286.                 tcpListenAddress="auto"
  287.                 tcpListenPort="4001"
  288.                 tcpSelectorTimeout="100"
  289.                 tcpThreadCount="6"/>
  290.             <Sender
  291.                 className="org.apache.catalina.cluster.tcp.ReplicationTransmitter"
  292.                 replicationMode="pooled"/>
  293.             <Valve className="org.apache.catalina.cluster.tcp.ReplicationValve"
  294.                    filter=".*\.gif;.*\.js;.*\.jpg;.*\.htm;.*\.html;.*\.txt;"/>
  295.         </Cluster>
  296.        
  297.   -->
  298. - <!--
  299. Normally, users must authenticate themselves to each web app
  300.              individually.  Uncomment the following entry if you would like
  301.              a user to be authenticated the first time they encounter a
  302.              resource protected by a security constraint, and then have that
  303.              user identity maintained across *all* web applications contained
  304.              in this virtual host.
  305.   -->
  306. - <!--
  307.         <Valve className="org.apache.catalina.authenticator.SingleSignOn"
  308.                    debug="0"/>
  309.        
  310.   -->
  311. - <!--
  312. Access log processes all requests for this virtual host.  By
  313.              default, log files are created in the "logs" directory relative to
  314.              $CATALINA_HOME.  If you wish, you can specify a different
  315.              directory with the "directory" attribute.  Specify either a relative
  316.              (to $CATALINA_HOME) or absolute path to the desired directory.
  317.        
  318.   -->
  319. - <!--
  320.         <Valve className="org.apache.catalina.valves.AccessLogValve"
  321.                  directory="logs"  prefix="localhost_access_log." suffix=".txt"
  322.                  pattern="common" resolveHosts="false"/>
  323.        
  324.   -->
  325. - <!--
  326. Logger shared by all Contexts related to this virtual host.  By
  327.              default (when using FileLogger), log files are created in the "logs"
  328.              directory relative to $CATALINA_HOME.  If you wish, you can specify
  329.              a different directory with the "directory" attribute.  Specify either a
  330.              relative (to $CATALINA_HOME) or absolute path to the desired
  331.              directory.
  332.   -->
  333.   <Logger className="org.apache.catalina.logger.FileLogger" directory="logs" prefix="localhost_log." suffix=".txt" timestamp="true" />
  334.   </Host>
  335.   </Engine>
  336.   </Service>
  337.   </Server>


Message édité par Roco le 23-04-2004 à 14:40:39
Reply

Marsh Posté le 23-04-2004 à 11:16:59   

Reply

Marsh Posté le 23-04-2004 à 11:28:49    

Enfin si je viens de repérer :
 
<Host name="localhost" debug="0" appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false">
 
Et cela à l'air de lancer les contextes (en tous ca je vois au lancement du serveur, le chargement des contextes.
 
Si je veux supprimer tout cela et crée un nouvelle application, je fais comment.
 
Pour la créer, je crée un contexte ok.

Reply

Marsh Posté le 23-04-2004 à 11:31:14    

un context ne se déclare pas dans le web.xml
Le web.xml sert à configurer un context.
 
C'est quoi exactement ta question ?


Message édité par benou le 23-04-2004 à 11:31:42

---------------
ma vie, mon oeuvre - HomePlayer
Reply

Marsh Posté le 23-04-2004 à 11:32:36    

Je voulais dire server.xml.  
 
C'est bien celui-là qui m'intrigue.

Reply

Marsh Posté le 23-04-2004 à 11:36:32    

dans les versions récentes de tomcat il y a la possibilité de déclarer les contextes dans des fichiers xml à part. J'ai découvert ca adns tomcat5 mais c'était déjà le cas dans tomcat4...
 
essaye de trouver le fichies admin.xml par exemple.


---------------
ma vie, mon oeuvre - HomePlayer
Reply

Marsh Posté le 23-04-2004 à 11:43:49    

Je l'ai trouvé !
 

Code :
  1. - <!--
  2.     Context configuration file for the Tomcat Administration Web App
  3.     $Id: admin.xml,v 1.2 2002/07/23 12:13:05 remm Exp $
  4.   -->
  5. - <Context path="/admin" docBase="../server/webapps/admin" debug="0" privileged="true">
  6. - <!--
  7. Uncomment this Valve to limit access to the Admin app to localhost
  8.    for obvious security reasons. Allow may be a comma-separated list of
  9.    hosts (or even regular expressions).
  10.   <Valve className="org.apache.catalina.valves.RemoteAddrValve"
  11.     allow="127.0.0.1"/>
  12.  
  13.   -->
  14.   <Logger className="org.apache.catalina.logger.FileLogger" prefix="localhost_admin_log." suffix=".txt" timestamp="true" />
  15.   </Context>


 
Mais je peux le supprimer sauvagement avec les exemples aussi ?
 
Ou cela risque de poser des problèmes ?

Reply

Marsh Posté le 23-04-2004 à 13:29:50    

ca ne devrait pas poser problème, mais pourquoi le supprimer ?


---------------
ma vie, mon oeuvre - HomePlayer
Reply

Marsh Posté le 23-04-2004 à 14:07:42    

Quand je mets un serveur en production, j'évite de laisser les exemples de développement...
 
Sinon, là je me plonge à fond dans la configuration de Tomcat grâce au site : http://etudiant.univ-mlv.fr/~mrous [...] rub=5&id=8

Reply

Marsh Posté le 23-04-2004 à 14:10:41    

Roco a écrit :

Quand je mets un serveur en production, j'évite de laisser les exemples de développement...
 
Sinon, là je me plonge à fond dans la configuration de Tomcat grâce au site : http://etudiant.univ-mlv.fr/~mrous [...] rub=5&id=8


bha en prod bien sûr :D
 
sinon, to lien c'est juste une traduction française de la doc sur le site de tomcat


---------------
ma vie, mon oeuvre - HomePlayer
Reply

Marsh Posté le 23-04-2004 à 14:12:41    

A quoi correspond l'attribut debug ? Je ne vois rien dans ma doc à ce sujet...

Reply

Marsh Posté le 23-04-2004 à 14:12:41   

Reply

Marsh Posté le 23-04-2004 à 14:15:58    

ben va voir sur le site de tomcat [:spamafote]


---------------
ma vie, mon oeuvre - HomePlayer
Reply

Marsh Posté le 23-04-2004 à 14:18:51    

Atchoum !!!
 
The level of debugging detail logged by this Realm to the associated Logger. Higher numbers generate more detailed output. If not specified, the default debugging detail level is zero (0).

Reply

Marsh Posté le 23-04-2004 à 14:19:35    

Je capte que dale et puis la balise Listener ? Ca vous dit quelque chose ?

Reply

Marsh Posté le 23-04-2004 à 14:24:31    

Roco a écrit :

Je capte que dale


[:kiki]
 
allez, essaye une traduction mot à mot ...


---------------
ma vie, mon oeuvre - HomePlayer
Reply

Marsh Posté le 23-04-2004 à 14:26:45    

Franchement le site : http://etudiant.univ-mlv.fr/~mrous [...] rub=5&id=2 est génial. Mais il est un peu incomplet par rapport à la version 5.0 de Tomcat.
 
Si quelqu'un a des sites avec plus d'infos pour administrer Tomcat, je suis preneur. Mais éviter de me filer ça : http://jakarta.apache.org/tomcat/t [...] howto.html, car c'est imconpréhensible pour moi.
 
Je mange pourtant avec des collègues américains en ce moment et je n'ai pas de problème pour bien discuter avec eux (de la politique de Bush :) ) Mais les docs des projets Open Source, aie ! C'est dur...

Reply

Marsh Posté le 23-04-2004 à 14:28:40    

Sans déc' c'est quoi cette balise : <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" debug="0"/>
 
Et celle-là : <GlobalNamingResources> ?

Reply

Marsh Posté le 23-04-2004 à 15:03:35    

benou a écrit :

bha en prod bien sûr :D
 
sinon, to lien c'est juste une traduction française de la doc sur le site de tomcat


 
Koua ?
 
1/ Ben voui à un moment faudra bien mettre en prod le projet. Tant que je suis sur la partie configuration du serveur de test, autant que j'apprenne toutes ses subtilités et que je n'ai pas à revenir dessus par la suite.
 
2/ Ben, je la trouve pas cette doc sur le site d'Apache Tomcat (faut dire que je n'ai pas non plus trop le temps de fouiller. Si tu l'as, tu peux me la donner. Sinon, tant pis...

Reply

Marsh Posté le 23-04-2004 à 15:52:23    

Citation :

L'implémentation par défaut pour la balise Server est org.apache.catalina.core.StandardServer. Elle accepte un attribut
  optionnel supplémentaire, debug, qui permet de définir le niveau de debugging pour ce composant. Les niveaux de debug
  sont croissants. 0, la valeur la plus faible, est également la valeur par défaut. Les informations de debug sont envoyées
  au Logger défini dans la configuration.


 
Ca veut dire que si on veut un max d'infos de debug, on met quelle valeur ? 10, 100, 1.000.000.000 ?

Reply

Marsh Posté le 23-04-2004 à 16:44:44    

Pb ajout de commentaires dans le fichier server.xml :
 
Marche pas (erreur pendant l'execution de startup.bat que je ne peux pas rapporter car elles dégagent tout de suite) :
 

Citation :

<!-- Balise Server
 
 1. Rôle
 
   La balise Server est la balise principale du fichier de configuration de Tomcat. C'est la seule balise mère du fichier.
   Aucune autre balise ne peut être à son niveau. Elle présente toutes les caractéristiques du conteneur de servlets  
   Catalina (coeur de Tomcat). C'est-à-dire qu'elle contient toute la configuration de Tomcat, en ce qui concerne le  
   conteneur de servlets. Cela signifie qu'elle ne contiendra pas, par exemple, de données de configuration sur les  
   utilisateurs du serveur.  
 
 2. Balise ancêtre
 
   Aucune : La balise Server est la seule et unique balise mère du fichier.  
 
 3. Balises filles
 
   Service : Au moins un  
   
   GlobalNamingResources : Un et un seul  
 
 4. Attributs obligatoires
 
   port : Le numéro du port sur lequel le serveur écoute pour une commande de shutdown, par connexion TCP/IP.
     Cette connexion devra être initiée par l'ordinateur sur lequel tourne cette instance de Tomcat.  
 
   shutdown : La commande (chaîne de caractères) de shutdown que le serveur doit recevoir sur le port spécifié.  
 
 5. Attributs optionnels
 
   className : Permet de spécifier la classe (chemin complet, packages puis nom de la classe) à utiliser comme  
         implémentation de l'interface org.apache.catalina.Server. Si cet attribut n'est pas spécifié,  
        l'implémentation par défaut est utilisée (voir paragraphe suivant).  
         
 6. Implémentation par défaut
 
   L'implémentation par défaut pour la balise Server est org.apache.catalina.core.StandardServer. Elle accepte un attribut
   optionnel supplémentaire, debug, qui permet de définir le niveau de debugging pour ce composant. Les niveaux de debug
   sont croissants. 0, la valeur la plus faible, est également la valeur par défaut. Les informations de debug sont envoyées
   au Logger défini dans la configuration.  
     
-->
 
<Server port="8005" shutdown="SHUTDOWN" debug="0">
 
 <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" debug="0"/>
 <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" debug="0"/>
 
 <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">
     </Resource>
     <ResourceParams name="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>
 
 <Service name="Catalina">
  <Connector port="8080" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" debug="0" connectionTimeout="20000" disableUploadTimeout="true" />
  <Connector port="8009" enableLookups="false" redirectPort="8443" debug="0" protocol="AJP/1.3" />
     <Engine name="Catalina" defaultHost="localhost" debug="0">
   <Logger className="org.apache.catalina.logger.FileLogger" prefix="catalina_log." suffix=".txt" timestamp="true"/>
   <Realm className="org.apache.catalina.realm.UserDatabaseRealm" debug="0" resourceName="UserDatabase"/>
    <Host name="localhost" debug="0" appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false">
     <Logger className="org.apache.catalina.logger.FileLogger" directory="logs"  prefix="localhost_log." suffix=".txt" timestamp="true"/>
         </Host>
     </Engine>
 </Service>
 
</Server>


 
Marche bien (sans les commentaires) :
 

Citation :

<Server port="8005" shutdown="SHUTDOWN" debug="0">
 
 <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" debug="0"/>
 <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" debug="0"/>
 
 <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">
     </Resource>
     <ResourceParams name="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>
 
 <Service name="Catalina">
  <Connector port="8080" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" debug="0" connectionTimeout="20000" disableUploadTimeout="true" />
  <Connector port="8009" enableLookups="false" redirectPort="8443" debug="0" protocol="AJP/1.3" />
     <Engine name="Catalina" defaultHost="localhost" debug="0">
   <Logger className="org.apache.catalina.logger.FileLogger" prefix="catalina_log." suffix=".txt" timestamp="true"/>
   <Realm className="org.apache.catalina.realm.UserDatabaseRealm" debug="0" resourceName="UserDatabase"/>
    <Host name="localhost" debug="0" appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false">
     <Logger className="org.apache.catalina.logger.FileLogger" directory="logs"  prefix="localhost_log." suffix=".txt" timestamp="true"/>
         </Host>
     </Engine>
 </Service>
 
</Server>

Reply

Marsh Posté le 23-04-2004 à 17:10:51    

Même problème lorsque je veux déclarer un contexte dans hostname :
 
<Context path="/rsa" docBase="rsa" debug="0"reloadable="true" crossContext="true">
 

Reply

Marsh Posté le 23-04-2004 à 20:17:00    

regarde les messages d'erreur !


---------------
ma vie, mon oeuvre - HomePlayer
Reply

Marsh Posté le 28-04-2004 à 11:30:26    

:bounce:

Reply

Marsh Posté le    

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed