| Classes | |
|---|---|
| JkBalancer | No description provided. |
| JkBalancerMapping | No description provided. |
| JkBalancerMember | No description provided. |
| JkServer | No description provided. |
| JkStatus | No description provided. |
| JkStatusAccessor | No description provided. |
| JkStatusParser |
<?xml version="1.0" encoding="UTF-8" ?>
<jk:status xmlns:jk="http://jakarta.apache.org">
<jk:server name="localhost" port="80"
software="Apache/2.0.54 (Win32) mod_ssl/2.0.54 OpenSSL/0.9.7g mod_jk/1.2.13-dev"
version="1.2.12"/>
<jk:balancers>
<jk:balancer id="0" name="lb" type="lb"
sticky="True" stickyforce="False" retries="3" recover="60">
<jk:member id="0" name="node1" type="ajp13" host="localhost" port="9012"
address="127.0.0.1:9012" status="OK" lbfactor="1" lbvalue="1"
elected="0" readed="0" transferred="0" errors="0" busy="0"/>
<jk:member id="1" name="node2" type="ajp13" host="localhost" port="9022"
address="127.0.0.1:9022" status="OK" lbfactor="1" lbvalue="1"
elected="0" readed="0" transferred="0" errors="0" busy="0"/>
<jk:map type="Wildchar" uri="/ClusterTest/*" context="/ClusterTest/*"/>
<jk:map type="Exact" uri="/ClusterTest" context="/ClusterTest"/>
<jk:map type="Wildchar" uri="/myapps/*" context="/myapps/*"/>
<jk:map type="Exact" uri="/myapps" context="/myapps"/>
</jk:balancer>
</jk:balancers>
</jk:status>
|
| JkStatusResetTask | Ant task that implements the /jkstatus?cmd=reset&l=loadbalancer command, supported by the
mod_jk status (1.2.15) application. |
| JkStatusTask | Ant task that implements the show /jkstatus command, supported
by the mod_jk status (1.2.13) application. |
| JkStatusUpdateTask | Ant task that implements the /status command, supported by the
mod_jk status (1.2.13) application. |
This package contains a set of Task implementations for
Ant (version 1.6.x or later) that can be used to interact with the
Apaache mod_jk status page to show, update, disable and stop mod_jk worker.
For more information, see
JK Documenation.
The attributes of each task element correspond exactly to the request parameters that are included with an HTTP request sent directly to jk status page. They are summarized as follows:
| Attribute | Description |
|---|---|
| url |
The URL of the jk status page you will use to
perform the requested operations. If not specified, defaults to
http://localhost:80/jkstatus (which corresponds
to a standard installation of Apache mod_jk).
|
| username |
The username of a mod_jk status user that has been configured with the
Allow user Apache Location constraint. This attribute is optional.
|
| password |
The password of a mod_jk status user that has been configured with the
Allow user Apache Location constraint. This attribute is optional.
|