blob: d3dde50fb21022e02792f17760863ea44c1bd817 [file] [log] [blame]
<?xml version="1.0" encoding="ISO-8859-1" ?>
<document>
<copyright>
Copyright 1999-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
</copyright>
<properties>
<title>Workers HowTo</title>
<author email="hgomez@apache.org">Henri Gomez</author>
<author email="shachor@il.ibm.com">Gal Shachor</author>
<date>$Date$</date>
</properties>
<section name="Introduction">
<p>
A Tomcat worker is a Tomcat instance that is waiting to execute servlets on behalf of some web server.
For example, we can have a web server such as Apache forwarding servlet requests to a
Tomcat process (the worker) running behind it.
</p>
<p>
The scenario described above is a very simple one;
in fact one can configure multiple Tomcat workers to serve servlets on
behalf of a certain web server.
The reasons for such configuration can be:
</p>
<ul>
<li>
We want different contexts to be served by different Tomcat workers to provide a
development environment where all the developers share the same web server but own a Tomcat worker of their own.
</li>
<li>
We want different virtual hosts served by different Tomcat processes to provide a
clear separation between sites belonging to different companies.
</li>
<li>
We want to provide load balancing, meaning run multiple Tomcat workers each on a
machine of its own and distribute the requests between them.
</li>
</ul>
<p>
There are probably more reasons for having multiple workers but I guess that this list is enough...
Tomcat workers are defined in a properties file dubbed workers.properties and this tutorial
explains how to work with it.
</p>
<p>
This document was originally part of <b>Tomcat: A Minimalistic User's Guide</b> written by Gal Shachor,
but has been split off for organizational reasons.
</p>
</section>
<section name="Defining Workers">
<p>
Defining workers to the Tomcat web server plugin can be done using a properties file
(a sample file named workers.properties is available in the conf/ directory).
</p>
<p>
the file contains entries of the following form:
</p>
<p>
<b>worker.list</b>=&lt;a comma separated list of worker names&gt;
</p>
<screen>
<note>the list of workers</note>
<read>worker.list= worker1, worker2</read>
</screen>
<p>
When starting up, the web server plugin will instantiate the workers whose name appears in the
<b>worker.list</b> property, these are also the workers to whom you can map requests.
</p>
<subsection name="Workers Type">
<p>
Each named worker should also have a few entries to provide additional information on his behalf.
This information includes the worker's type and other related worker information.
Currently the following worker types that exists are (JK 1.2.5):
</p>
<table>
<tr><th>Type</th><th>Description</th></tr>
<tr><td>ajp12</td><td>This worker knows how to forward requests to out-of-process Tomcat workers using the ajpv12 protocol.</td></tr>
<tr><td>ajp13</td><td>This worker knows how to forward requests to out-of-process Tomcat workers using the ajpv13 protocol.</td></tr>
<tr><td>jni</td><td>This worker knows how to forward requests to in-process Tomcat workers using JNI.</td></tr>
<tr><td>lb</td><td>This is a load-balancing worker; it knows how to provide round-robin based sticky load balancing with a certain level of fault-tolerance.</td></tr>
</table>
<p>
Defining workers of a certain type should be done with the following property format:
</p>
<p>
<b>worker</b>. <b>worker name</b>.<b>type</b>=&lt;worker type&gt;
Where worker name is the name assigned to the worker and the worker type is one of the four types defined
in the table (a worker name may not contain any space (a good naming convention for queue named should
follow the Java variable naming rules).
</p>
<screen>
<note>Defines a worker named "local" that uses the ajpv12 protocol to forward requests to a Tomcat process.</note>
<read>worker.local.type=ajp12</read>
<note>Defines a worker named "remote" that uses the ajpv13 protocol to forward requests to a Tomcat process.</note>
<read>worker.remote.type=ajp13</read>
<note>Defines a worker named "fast" that uses JNI to forward requests to a Tomcat process.</note>
<read>worker.fast.type=jni</read>
<note>Defines a worker named "loadbalancer" that loadbalances several Tomcat processes transparently.</note>
<read>worker.loadbalancer.type=lb</read>
</screen>
</subsection>
</section>
<section name="Setting Worker Properties">
<p>
After defining the workers you can also specify properties for them.
Properties can be specified in the following manner:
</p>
<p>
worker.&lt;worker name&gt;.&lt;property&gt;=&lt;property value&gt;
</p>
Each worker has a set of properties that you can set as specified in the following subsections:
<subsection name="ajp12 Worker properties">
<p>
The ajp12 typed workers forward requests to out-of-process Tomcat workers
using the ajpv12 protocol over TCP/IP sockets.
</p>
<p>
the ajp12 worker properties are :
</p>
<p>
<b>host</b> property set the host where the Tomcat worker is listening for ajp12 requests.
</p>
<p>
<b>port</b> property set The port where the Tomcat worker is listening for ajp12 requests
</p>
<p>
<b>lbfactor</b>property is used when working with a load balancer worker, this is the load-balancing factor for the worker.
We'll see more on this in the lb worker section.
</p>
<screen>
<note>worker "worker1" will talk to Tomcat listening on machine www.x.com at port 8007 using 2.5 lb factor</note>
<read>worker.worker1.host=www.x.com</read>
<read>worker.worker1.port=8007</read>
<read>worker.worker1.lbfactor=2.5</read>
</screen>
<p>
Notes: In the ajpv12 protocol, connections are created, used and then closed at each request.
The default port for ajp12 is 8007
</p>
</subsection>
<subsection name="ajp13 Worker properties">
<p>
The ajp13 typed workers forward requests to out-of-process Tomcat workers using the ajpv13 protocol over TCP/IP sockets.
The main difference between ajpv12 and ajpv13 are that:
<ul>
<li>
ajpv13 is a more binary protocol and it try to compress some of the request data by coding
frequently used strings as small integers.
</li>
<li>
ajpv13 reuse open sockets and leaves them open for future requests (remember when you've got a Firewall between your
WebServer and Tomcat).
</li>
<li>
ajpv13 has special treatment for SSL information so that the container can implement
SSL related methods such as isSecure().
</li>
</ul>
</p>
<p>
You should note that Ajp13 is now the only out-process protocol supported by Tomcat 4.0.x, 4.1.x and 5.
</p>
<p>
The following table specifies properties that the ajp13 worker can accept:
</p>
<p>
<b>host</b> property set the host where the Tomcat worker is listening for ajp13 requests.
</p>
<p>
<b>port</b> property set The port where the Tomcat worker is listening for ajp13 requests
</p>
<p>
<b>lbfactor</b> property is used when working with a load balancer worker, this is the load-balancing factor for the worker.
We'll see more on this in the lb worker section.
</p>
<p>
<b>cachesize</b> property is usefull when you're using JK in multithreaded
web servers such as Apache 2.0, IIS and Netscape. They will benefit the most by
setting this value to a higher level (such as the estimated average concurrent users for Tomcat).
If cachesize is not set, the connection cache support is disabled.
</p>
<p>
<b>cache_timeout</b> property should be used with <b>cachesize</b> to specify how to time JK should keep
an open socket in cache before closing it. This property should be used to reduce the number of threads
on the Tomcat WebServer.
</p>
<p>
You should know that under heavy load some WebServers, for example Apache's create many childs/threads
to handle the load and they destroy the childs/threads only when the load decrease.
</p>
<p>
Each child could open an ajp13 connection if it have to forward a request to Tomcat, creating
a new ajp13 thread on Tomcat side.
</p>
<p>
The problem is that after an ajp13 connection is created, the child won't drop it
until killed. And since the webserver will keep its childs/threads running
to handle high-load, even it the child/thread handle only static contents, you could
finish having many unused ajp13 threads on the Tomcat side.
</p>
<p>
<b>socket_keepalive</b> property should be used when you have a firewall between your webserver
and the Tomcat engine, who tend to drop inactive connections. This flag will told Operating System
to send <code>KEEP_ALIVE</code> message on inactive connections (interval depend on global OS settings,
generally 120mn), and sus prevent the firewall to cut the connection.
</p>
<p>
The problem with Firewall cutting inactive connections is that sometimes, neither webserver or tomcat
have informations about the cut and couldn't handle it.
</p>
<p>
<b>socket_timeout</b> property told webserver to cut an ajp13 connection after some time of
inactivity. When choosing an endpoint for a request and the assigned socket is open, it will be
closed if it was not used for the configured time.
It's a good way to ensure that there won't too old threads living on Tomcat side,
with the extra cost you need to reopen the socket next time a request be forwarded.
This property is very similar to <b>cache_timeout</b> but works also in non-cache mode.
</p>
<p>
<b>connect_timeout</b> property told webserver to send a PING request on ajp13 connection after
connection is established. The parameter is the delay in milliseconds to wait for the PONG reply.
</p>
<p>
This features has been added in <b>jk 1.2.6</b> to avoid problem with hung tomcat's and require ajp13
ping/pong support which has been implemented on Tomcat <b>3.3.2+, 4.1.28+ and 5.0.13+</b>.
Disabled by default.
</p>
<p>
<b>prepost_timeout</b> property told webserver to send a PING request on ajp13 connection before
forwarding to it a request. The parameter is the delay in milliseconds to wait for the PONG reply.
</p>
<p>
This features has been added in <b>jk 1.2.6</b> to avoid problem with hung tomcat's and require ajp13
ping/pong support which has been implemented on <b>Tomcat 3.3.2+, 4.1.28+ and 5.0.13+</b>.
Disabled by default.
</p>
<p>
<b>reply_timeout</b> property told webserver to wait some time for reply to a forwarded request
before considering the remote tomcat is dead and eventually switch to another tomcat in a cluster
group. By default webserver will wait forever which could be an issue for you.
The parameter is the number of milliseconds to wait for reply, so adjust it carrefully if you
have long running servlets.
</p>
<p>
This features has been added in <b>jk 1.2.6</b> to avoid problem with hung tomcat's and works on all
servlet engines supporting ajp13.
Disabled by default.
</p>
<p>
<b>recovery_options</b> property told webserver how to handle recovery when
it detect that tomcat failed.
By default, webserver will forward the request to another tomcat in LB mode
(or to another ajp thread in ajp13 mode).
values are : 0 (full recovery), 1 (don't recover if tomcat failed after getting the request),
2 (don't recover if tomcat failed after sending the headers to client), 3 (don't recover if tomcat failed
getting the request or after sending the headers to client).
</p>
<p>
This features has been added in <b>jk 1.2.6</b> to avoid problem with hung/broken tomcat's
and works on all servlet engines supporting ajp13.
Full recovery by default.
</p>
<screen>
<note>worker "worker2" will talk to Tomcat listening on machine www2.x.com at port 8009 using 3.5 lb factor</note>
<read>worker.worker2.host=www2.x.com</read>
<read>worker.worker2.port=8009</read>
<read>worker.worker2.lbfactor=3.5</read>
<note>worker "worker2" use up to 10 sockets, which will stay no more than 10mn in cache</note>
<read>worker.worker2.cachesize=10</read>
<read>worker.worker2.cache_timeout=600</read>
<note>worker "worker2" ask operating system to send KEEP-ALIVE signal on the connection</note>
<read>worker.worker2.socket_keepalive=1</read>
<note>worker "worker2" want ajp13 connection to be dropped after 5mn (timeout)</note>
<read>worker.worker2.socket_timeout=300</read>
</screen>
<p>
Notes: In the ajpv13 protocol, the default port is 8009
</p>
</subsection>
<subsection name="lb Worker properties">
<p>
The load-balancing worker does not really communicate with Tomcat workers.
Instead it is responsible for the management of several "real" workers.
This management includes:
</p>
<ul>
<li>
Instantiating the workers in the web server.
</li>
<li>
Using the worker's load-balancing factor, perform weighed-round-robin load balancing where
high lbfactor means stronger machine (that is going to handle more requests)
</li>
<li>
Keeping requests belonging to the same session executing on the same Tomcat worker.
</li>
<li>
Identifying failed Tomcat workers, suspending requests to them and instead fall-backing on
other workers managed by the lb worker.
</li>
</ul>
<p>
The overall result is that workers managed by the same lb worker are load-balanced (based on their lbfactor and current user session) and also fall-backed so a single Tomcat process death will not "kill" the entire site.
The following table specifies properties that the lb worker can accept:
<ul>
<li><b>balanced_workers</b> is a comma separated list of workers that the load balancer need to manage.
These workers should not appear in the worker.list property.</li>
<li><b>sticky_session</b> specifies whether requests with SESSION ID's should be routed back to the same
Tomcat worker. If sticky_session is an int and is not 0 it is set to JK_TRUE and sessions are sticky, otherwise
sticky_session is set to false. Set sticky_session to JK_FALSE when Tomcat is using a Session Manager which
can persist session data across multiple instances of Tomcat. By default sticky_session is set to JK_TRUE.</li>
</ul>
</p>
<screen>
<note> The worker balance1 while use "real" workers worker1 and worker2</note>
<read>worker.balance1.balanced_workers=worker1, worker2</read>
</screen>
</subsection>
<subsection name="Advanced lb Worker properties">
<p>
With JK 1.2.x, new load-balancing and fault-tolerant support has been added via
2 new properties, <b>local_worker_only</b> and <b>local_worker</b>.
</p>
<p>
Let's take an example environment:
</p>
<p>
A cluster with two nodes (worker1+worker2), running a webserver + tomcat tandem on each node and
a loadbalancer in front of the nodes.
</p>
<screen>
<note>The advanced router LB worker</note>
<read>worker.list=router</read>
<note># Define a 'local_worker' worker using ajp13</note>
<read>worker.worker1.port=8009</read>
<read>worker.worker1.host=node1.domain.org</read>
<read>worker.worker1.type=ajp13</read>
<read>worker.worker1.lbfactor=1</read>
<read>worker.worker1.local_worker=1</read>
<note># Define another 'local_worker' worker using ajp13</note>
<read>worker.worker2.port=8009</read>
<read>worker.worker2.host=node2.domain.org</read>
<read>worker.worker2.type=ajp13</read>
<read>worker.worker2.lbfactor=1</read>
<read>worker.worker2.local_worker=0</read>
<note># Define the LB worker</note>
<read>worker.router.type=lb</read>
<read>worker.router.balanced_workers=worker1,worker2</read>
<read>worker.router.local_worker_only=1</read>
</screen>
<p>
The <b>local_worker</b> flag on worker1 and worker2 tells the <b>lb_worker</b> which connections are going
to the local worker.
</p>
<p>
If local_worker is an int and is not 0 it is set to JK_TRUE and marked as local worker, JK_FALSE otherwise.
If in minimum one worker is marked as local worker, lb_worker is in local worker mode.
All local workers are moved to the beginning of the internal worker list in lb_worker during validation.
</p>
<p>
This means that if a request with a session id comes in it would be routed to the appropriate worker.
If this worker is down it will be send to the first local worker which is not in error state.
</p>
<p>
If a request without a session comes in, it would be routed to the first local worker.
If all local worker are in error state, then the 'local_worker_only' flag is important.
If it was set to an int and this wasn't 0 it is set to JK_TRUE, JK_FALSE otherwise. With set to JK_TRUE, this request gets an error response. If set to JK_FALSE lb_worker tries to route the request to another balanced worker.
</p>
<p>
If one of the worker was in error state and has recovered nothing changes.
The local worker will be check for requests without a session id (and with a session on himself) and
the other worker will only be checked if a request with a session id of this worker comes in.
</p>
<p>
Why do we need souch a complex behavior ?
</p>
<p>
We need a graceful shut down of a node for maintenance. The balancer in front asks a special port on each
node periodically. If we want to remove a node from the cluster, we switch off this port.
The loadbalancer can't connect to it and marks the node as down.
But we don't move the sessions to another node. In this environment it is an error if the balancer sends a request without a session to an apache+mod_jk+tomcat which port is switched off. And if the load balancer determines that a node is down no other node is allowed to send a request without a session to it. Only requests with old sessions on the switched off node would be routed to this node. After some time nobody uses the old sessions and the sessions will time out. Then nobody uses this node, because all session are gone and the node is unreachable without a session-id in the request. If someone uses a session which timed out, our servlet system sends a redirect response without a session id to the browser. This is necessary for me, because on a switched off node apache and tomcat can still be up and running, but they are in an old state and should only be asked for valid old sessions. After the last session timed out, I could update the node etc. without killing sessions or moving them to another node. Sometimes we have a lot of big objects in our sessions, so it would be really time consuming to move them.
</p>
<p>
The defaults are still local_worker: 0 and local_worker_only:0
</p>
</subsection>
<subsection name="jni Worker properties">
<p>
The jni worker opens a JVM inside the web server process and executes Tomcat within it (that is in-process).
Following that, messages to and from the JVM are passed using JNI method calls, this makes the jni worker faster
then the out-of-process workers that need to communicate to the Tomcat workers by writing AJP messages over
TCP/IP sockets.
</p>
<p>
Note: Since the JVM is multithreaded; the jni worker should be used only within multithreaded servers
such as AOLServer, IIS, Netscape and Apache 2.0.<br/>
You should also make sure that the threading scheme used by the web servers match the one
used to build the JK web server plugin.
</p>
<p>
Since the jni worker opens a JVM it can accept many properties that it forward to the JVM such as
the classpath etc. as we can see in the following table.
</p>
<p>
<b>class_path</b> is the classpath as used by the in-process JVM. This should point to all Tomcats'
jar/file files as well as any class or other jar file that you want to add to the JVM.
</p>
<p>
To have JSP compile support, you should remember to also add Javac to the classpath.
This can be done in Java2 by adding tools.jar to the classpath.
In JDK1.xx you should just add classes.zip.
</p>
<p>
The <b>class_path</b> property can be given in multiple lines.
In this case the JK environment will concatenate all the classpath entries together
by putting path delimiter (":"/";") between the entries.
</p>
<screen>
<note>Set the classpath for worker "wrkjni"</note>
<read>worker.wrkjni.class_path=/var/tomcat3/lib/tomcat.jar</read>
<note>we don't forget to add JAVAC (tools.jar)</note>
<read>worker.wrkjni.class_path=/opt/IBMJava2-131/lib/tools.jar</read>
</screen>
<p>
<b>bridge</b> indicate the kind of Tomcat you'll use via JNI.
</p>
<p>
The bridge property could be for now <b>tomcat32</b> or <b>tomcat33</b>.
Tomcat 3.2.x is deprecated but still present on some distribution like iSeries.
By default the bridge type is set tomcat33.
</p>
<screen>
<note>Set bridge type for "wrkjni", we'll use tomcat 3.3</note>
<read>worker.wrkjni.bridge=tomcat33</read>
</screen>
<p>
<b>cmd_line</b> is the command line that is handed over to Tomcats' startup code.
</p>
<p>
The cmd_line property can be given in multiple lines.
In this case the JK environment will concatenate all the cmd_line entries together by putting spaces
between the entries.
</p>
<screen>
<note>Set command line for "wrkjni"</note>
<read>worker.wrkjni.cmd_line=-config</read>
<note>Next arg</note>
<read>worker.wrkjni.cmd_line=/etc/tomcat3/conf/alt-server.xml</read>
<note>Very important tomcat.home</note>
<read>worker.wrkjni.cmd_line=-home</read>
<note>Location of tomcat.home</note>
<read>worker.wrkjni.cmd_line=/var/tomcat3</read>
</screen>
<p>
<b>jvm_lib</b> is the full path to the JVM implementation library.
The jni worker will use this path to load the JVM dynamically.
</p>
<screen>
<note>Set full path for JVM shared lib (IBM SDK on Linux)</note>
<read>worker.wrkjni.jvm_lib=/opt/IBMJava2-131/jre/bin/classic/libjvm.so</read>
<note>Set full path for JVM shared lib (Sun SDK on Windows)</note>
<read>worker.wrkjni.jvm_lib=c:\JDK\1.3.1\jre\bin\classic</read>
</screen>
<p>
<b>stdout</b> is full path to where the JVM write its System.out
</p>
<screen>
<note>Put logs in /var/log/http/jk-jvm-out.log</note>
<read>worker.wrkjni.stdout=/var/log/http/jk-jvm-out.log</read>
</screen>
<p>
<b>stderr</b> is full path to where the JVM write its System.err
</p>
<screen>
<note>Put logs in /var/log/http/jk-jvm-err.log</note>
<read>worker.wrkjni.stderr=/var/log/http/jk-jvm-err.log</read>
</screen>
<p>
<b>ms</b> set initial HEAP size for the JVM
</p>
<screen>
<note>Told JVM to use 64MB of initial heap size</note>
<read>worker.wrkjni.ms=64</read>
</screen>
<p>
<b>mx</b> set maximal HEAP size for the JVM
</p>
<screen>
<note>Told JVM to not use more than 128MB for heap</note>
<read>worker.wrkjni.mx=128</read>
</screen>
<p>
<b>sysprops</b> set the system properties for the JVM
</p>
<screen>
<note>Told JVM to use french language</note>
<read>worker.wrkjni.sysprops=-Duser.region=FR</read>
</screen>
<p>
<b>ld_path</b> set the additional dynamic libraries path (similar in nature to LD_LIBRARY_PATH)
</p>
<screen>
<note>Told system which library path to be added to access Java Env</note>
<read>worker.wrkjni.ld_path=/opt/IBMJava2-131/jre/bin/</read>
<read>worker.wrkjni.ld_path=/opt/IBMJava2-131/jre/bin/classic</read>
</screen>
<p>
Notes: Under Linux it seems that processes can't update their own LD_LIBRARY_PATH,
so you'll have to update it BEFORE launching the webserver...
</p>
</subsection>
<subsection name="Property file macros">
<p>
You can define "macros" in the property files.
These macros let you define properties and later on use them while
constructing other properties and it's very usefull when you want to
change your Java Home, Tomcat Home or OS path separator
</p>
<screen>
<note>property example, don't hardcode path separator</note>
ps=\
<read>workers.tomcat_home=d:\tomcat</read>
<read>workers.java_home=d:\sdk\jdk1.2.2</read>
<note>Using macros we'll have : worker.inprocess.class_path=d:\tomcat\classes</note>
<read>worker.inprocess.class_path=$(workers.tomcat_home)$(ps)classes</read>
<note>Using macros we'll have : worker.inprocess.class_path=d:\sdk\jdk1.2.2\lib\tools.jar</note>
<read>worker.inprocess.class_path=$(workers.java_home)$(ps)lib$(ps)tools.jar</read>
</screen>
</subsection>
</section>
<section name="A sample worker.properties">
<p>
Since coping with worker.properties on your own is not an easy thing to do,
a sample worker.properties file is bundled along JK.
</p>
<p>
You could also find here a sample workers.properties defining :
</p>
<ul>
<li>
An ajp12 worker that used the host localhost and the port 8007
</li>
<li>
An ajp13 worker that used the host localhost and the port 8008
</li>
<li>
A jni worker
</li>
<li>
A lb worker that load balance the ajp12 and ajp13 workers
</li>
</ul>
<screen>
<note># Define some properties</note>
<read>workers.apache_log=/var/log/httpd/</read>
<read>workers.tomcat_home=/var/tomcat3</read>
<read>workers.java_home=/opt/IBMJava2-131/</read>
<read>ps=/</read>
<note># Define 4 workers, 3 real workers using ajp12, ajp13, jni, the last one being a loadbalancing worker</note>
<read>worker.list=worker1, worker2, worker3, worker4</read>
<note># Set properties for worker1 (ajp12)</note>
<read>worker.worker1.type=ajp12</read>
<read>worker.worker1.host=locahost</read>
<read>worker.worker1.port=8007</read>
<read>worker.worker1.lbfactor=5</read>
<note># Set properties for worker2 (ajp13)</note>
<read>worker.worker2.type=ajp13</read>
<read>worker.worker2.host=locahost</read>
<read>worker.worker2.port=8009</read>
<read>worker.worker2.lbfactor=50</read>
<read>worker.worker2.cachesize=10</read>
<read>worker.worker2.cache_timeout=600</read>
<read>worker.worker2.socket_keepalive=1</read>
<read>worker.worker2.socket_timeout=300</read>
<note># Set properties for worker3 (jni)</note>
<read>worker.worker3.type=jni</read>
<note># Set worker3 bridge type, here Tomcat 3.3</note>
<read>worker.worker3.bridge=tomcat33</read>
<note># Set worker3 classpath</note>
<read>worker.worker3.class_path=$(workers.tomcat_home)$(ps)classes</read>
<read>worker.worker3.class_path=$(workers.tomcat_home)$(ps)lib$(ps)tomcat.jar</read>
<note># Set worker3 tomcat command line</note>
<read>worker.worker3.cmd_line=-home</read>
<read>worker.worker3.cmd_line=$(workers.tomcat_home)</read>
<note># Set worker3 Tomcat/JVM settings</note>
<read>worker.worker3.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)libjvm.so</read>
<read>worker.worker3.stdout=$(workers.apache_log)$(ps)inprocess.stdout</read>
<read>worker.worker3.stderr=$(workers.apache_log)$(ps)inprocess.stderr</read>
<read>worker.worker3.sysprops=tomcat.home=$(workers.tomcat_home)</read>
<note># Set properties for worker4 (lb) which use worker1 and worker2</note>
<read>worker.worker4.balanced_workers=worker1,worker2</read>
</screen>
</section>
</document>