- add <a name="..."> tags into all parameter in the pgpool-ii user manual.
authorHaruka harukat <harukat at sraoss.co.jp>
Tue, 26 Apr 2011 11:33:19 +0000 (11:33 +0000)
committerHaruka harukat <harukat at sraoss.co.jp>
Tue, 26 Apr 2011 11:33:19 +0000 (11:33 +0000)
doc/pgpool-en.html
doc/pgpool-ja.html

index 1721a35ba246d3a7cfc399cc3fd18633b12c48ab..acd930e01be7ac7a9a9d9ff22550844fb5baa683 100644 (file)
@@ -387,7 +387,7 @@ comment and will be ignored.</p>
 <h3><a name="common"></a>Common settings</h3>
 
 <dl>
-  <dt>listen_addresses</dt>
+  <dt><a name="LISTEN_ADDRESS"></a>listen_addresses</dt>
   <dd>
       <p>Specifies the hostname or IP address, on which pgpool-II will accept
       TCP/IP connections. <code>'*'</code> accepts
@@ -397,13 +397,13 @@ comment and will be ignored.</p>
       server start.</p>
   </dd>
       
-  <dt>port</dt>
+  <dt><a name="PORT"></a>port</dt>
   <dd>
       <p>The port number used by pgpool-II to listen for connections. Default
       is 9999. This parameter can only be set at server start.</p>
   </dd>
 
-  <dt>socket_dir</dt>
+  <dt><a name="SOCKET_DIR"></a>socket_dir</dt>
   <dd>
       <p>The directory where the UNIX domain socket accepting connections for 
       pgpool-II will be created. Default is <code>'/tmp'</code>. Be
@@ -412,14 +412,14 @@ comment and will be ignored.</p>
       This parameter can only be set at server start.</p>
   </dd>
 
-  <dt>pcp_port</dt>
+  <dt><a name="PCP_PORT"></a>pcp_port</dt>
   <dd>
       <p>The port number where PCP process accepts
       connections. Default is 9898. This parameter can only be set at
       server start.</p>
   </dd>
 
-  <dt>pcp_socket_dir</dt>
+  <dt><a name="PCP_SOCKET_DIR"></a>pcp_socket_dir</dt>
   <dd>
       <p>The directory path of the UNIX domain socket accepting
       connections for the PCP process. Default is <code>'/tmp'</code>. Be
@@ -428,7 +428,7 @@ comment and will be ignored.</p>
       directory. This parameter can only be set at server start.</p>
   </dd>
       
-  <dt>backend_socket_dir</dt>
+  <dt><a name="BACKEND_SOCKET_DIR"></a>backend_socket_dir</dt>
   <dd>
       <font color="red"><em>DEPRECATED</em><br>
       This parameter is deprecated for consistency with the default libpq policy. 
@@ -437,7 +437,7 @@ comment and will be ignored.</p>
       <p>This parameter was defining the PostgreSQL server's UNIX domain socket directory.<p>
   </dd>
 
-  <dt>pcp_timeout</dt>
+  <dt><a name="PCP_TIMEOUT"></a>pcp_timeout</dt>
   <dd>
       <p>PCP connection's timeout value in seconds. If a client does not
       respond within the set seconds, PCP closes the connection with
@@ -445,7 +445,7 @@ comment and will be ignored.</p>
       with a reload.</p>
   </dd>
 
-  <dt>num_init_children</dt>
+  <dt><a name="NUM_INIT_CHILDREN"></a>num_init_children</dt>
   <dd>
       <p>The number of preforked pgpool-II server processes. Default
       is 32. num_init_children is also the concurrent connections limit to
@@ -479,7 +479,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
           This parameter can only be set at server start.</p>
           </dd>
 
-  <dt>child_life_time</dt>
+  <dt><a name="CHILD_LIFE_TIME"></a>child_life_time</dt>
   <dd>
       <p>A pgpool-II child process' life time in seconds. When a child
       is idle for that many seconds, it is terminated and a new child
@@ -491,7 +491,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
       </p>
   </dd>
 
-  <dt>child_max_connections</dt>
+  <dt><a name="CHILD_MAX_CONNECTIONS"></a>child_max_connections</dt>
   <dd>
       <p>A pgpool-II child process will be terminated after this many
       connections from clients. This parameter is useful on a server
@@ -501,7 +501,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
       </p>
   </dd>
 
-  <dt>client_idle_limit
+  <dt><a name="CLIENT_IDLE_LIMIT"></a>client_idle_limit</dt>
   <dd>
   <p> Disconnect a client if it has been idle for
                        client_idle_limit seconds after the last query has completed.
@@ -512,19 +512,19 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
                        second stage of online recovery. You need to reload pgpool.conf if you 
                        change client_idle_limit.</p>
 
-  <dt>authentication_timeout
+  <dt><a name="AUTHENTICATION_TIMEOUT"></a>authentication_timeout</dt>
   <dd>
   <p>Specify the timeout for pgpool authentication. 0 disables the time
       out, which is the default. You need to restart pgpool-II if you
       change authentication_timeout.</p>
 
-  <dt>logdir</dt>
+  <dt><a name="LOGDIR"></a>logdir</dt>
   <dd>
       <p>The directory used for the logs. pgpool_status is written into this 
       directory.
        </p>
   </dd>
-  <dt>log_destination</dt>
+  <dt><a name="LOG_DESTINATION"></a>log_destination</dt>
   <dd>
       <p>PgPool II supports several methods for logging server messages,
        including stderr and syslog. The default is to log to stderr.
@@ -538,19 +538,19 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
        </p>
   </dd>
 
-  <dt>syslog_facility</dt>
+  <dt><a name="SYSLOG_FACILITY"></a>syslog_facility</dt>
   <dd>
       <p>When logging to syslog is enabled, this parameter determines the syslog "facility" to be used. You can choose from LOCAL0, LOCAL1, LOCAL2, LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7; the default is LOCAL0. See also the documentation of your system's syslog daemon.
        </p>
   </dd>
 
-  <dt>syslog_ident</dt>
+  <dt><a name="SYSLOG_IDENT"></a>syslog_ident</dt>
   <dd>
       <p>When logging to syslog is enabled, this parameter determines the program name used to identify PgPool messages in syslog logs. The default is pgpool.
        </p>
   </dd>
 
-  <dt>pid_file_name</dt>
+  <dt><a name="PID_FILE_NAME"></a>pid_file_name</dt>
   <dd>
       <p>Full path to a file which contains pgpool's process id.
            Default is "/var/run/pgpool/pgpool.pid".
@@ -558,7 +558,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
        </p>
   </dd>
 
-  <dt>print_timestamp</dt>
+  <dt><a name="PRINT_TIMESTAMP"></a>print_timestamp</dt>
   <dd>
       <p>Add timestamps to the logs when set to true. Default is
       true.
@@ -566,13 +566,13 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
       </p>
   </dd>
 
-  <dt>connection_cache</dt>
+  <dt><a name="CONNECTION_CACHE"></a>connection_cache</dt>
   <dd>
       <p>Caches connections to backends when set to true. Default is
       true.</p>
   </dd>
 
-  <dt>health_check_timeout</dt>
+  <dt><a name="HEALTH_CHECK_TIMEOUT"></a>health_check_timeout</dt>
   <dd>
       <p>pgpool-II periodically tries to connect to the backends to
       detect any error on the servers or networks. This error check
@@ -592,7 +592,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
      </p>
   </dd>
 
-  <dt>health_check_period</dt>
+  <dt><a name="HEALTH_CHECK_PERIOD"></a>health_check_period</dt>
   <dd>
       <p>This parameter specifies the interval between the health
       checks in seconds. Default is 0, which means health check is
@@ -601,7 +601,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
        </p>
   </dd>
       
-  <dt>health_check_user</dt>
+  <dt><a name="HEALTH_CHECK_USER"></a>health_check_user</dt>
   <dd>
       <p>The user name to perform health check. This user must exist
       in all the PostgreSQL backends.
@@ -609,7 +609,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
        </p>
   </dd>
 
-<dt>failover_command</dt>
+<dt><a name="FAILOVER_COMMAND"></a>failover_command</dt>
 <dd>
 <p>
 This parameter specifies a command to run when a node is detached.
@@ -643,7 +643,7 @@ After this, pgpool starts new child processes and is ready again to accept
 connections from clients.
 </p>
 
-<dt>failback_command</dt>
+<dt><a name="FAILBACK_COMMAND"></a>failback_command</dt>
 <dd>
 <p>
 This parameter specifies a command to run when a node is attached.
@@ -668,7 +668,7 @@ information.
       You need to reload pgpool.conf if you change failback_command.
 </p>
 
-<dt>follow_master_command</dt>
+<dt><a name="FOLLOW_MASTER_COMMAND"></a>follow_master_command</dt>
 <dd>
 <p>
 This parameter specifies a command to run in master/slave streaming replication mode only after a master failover.
@@ -701,7 +701,7 @@ degenerated nodes. Typically the command should be used to recover the slave fro
 pcp_recovery_node command for example.
 </p>
 
-  <dt>fail_over_on_backend_error</dt>
+  <dt><a name="FAIL_OVER_ON_BACKEND_ERROR"></a>fail_over_on_backend_error</dt>
   <dd>
       <p>
 If true, and an error occurs when writing to the backend communication,
@@ -714,7 +714,7 @@ postmaster. You need to reload pgpool.conf if you change this value.
 </p>
 </dd>
 
-  <dt>ignore_leading_white_space</dt>
+  <dt><a name="IGNORE_LEADING_WHITE_SPACE"></a>ignore_leading_white_space</dt>
   <dd>
       <p>pgpool-II ignores white spaces at the beginning of SQL
       queries while in the load balance mode. It is useful if used with
@@ -724,7 +724,7 @@ postmaster. You need to reload pgpool.conf if you change this value.
        </p>
   </dd>
 
-  <dt>log_statement</dt>
+  <dt><a name="LOG_STATEMENT"></a>log_statement</dt>
   <dd>
       <p>Produces SQL log messages when true. This is similar to the
       log_statement parameter in PostgreSQL. It produces logs even if the
@@ -733,7 +733,7 @@ postmaster. You need to reload pgpool.conf if you change this value.
        </p>
   </dd>
 
-  <dt>log_per_node_statement</dt>
+  <dt><a name="LOG_PER_NODE_STATEMENT"></a>log_per_node_statement</dt>
   <dd>
       <p>Similar to log_statement, except that it prints logs for each DB node separately.
       It can be useful to make sure that replication is working, for example.
@@ -741,7 +741,7 @@ postmaster. You need to reload pgpool.conf if you change this value.
        </p>
   </dd>
 
-  <dt>log_hostname</dt>
+  <dt><a name="LOG_HOSTNAME"></a>log_hostname</dt>
   <dd>
     <p>
     If true, ps command status will show the client's hostname instead
@@ -750,7 +750,7 @@ postmaster. You need to reload pgpool.conf if you change this value.
     </p>
   </dd>
     
-  <dt>log_connections</dt>
+  <dt><a name="LOG_CONNECTIONS"></a>log_connections</dt>
   <dd>
     <p>
     If true, all incoming connections will be printed to the log.
@@ -758,7 +758,7 @@ postmaster. You need to reload pgpool.conf if you change this value.
     </p>
   </dd>
     
-  <dt>enable_pool_hba</dt>
+  <dt><a name="ENABLE_POOL_HBA"></a>enable_pool_hba</dt>
   <dd>
     <p>
     If true, use pool_hba.conf for client authentication. See <a href="#hba">
@@ -767,7 +767,7 @@ postmaster. You need to reload pgpool.conf if you change this value.
     </p>
   </dd>
 
-  <dt>backend_hostname</dt>
+  <dt><a name="BACKEND_HOSTNAME"></a>backend_hostname</dt>
   <dd>
       <p>Specifies where to connect with the PostgreSQL backend. It can 
       It is used by pgpool-II to communicate with the server.
@@ -799,7 +799,7 @@ postmaster. You need to reload pgpool.conf if you change this value.
       </p>
   </dd>
 
-  <dt>backend_port</dt>
+  <dt><a name="BACKEND_PORT"></a>backend_port</dt>
   <dd>
       <p>Specifies the port number of the backends. Multiple backends
       can be specified by adding a number at the end of the parameter
@@ -814,7 +814,7 @@ postmaster. You need to reload pgpool.conf if you change this value.
       </p>
   </dd>
 
-  <dt>backend_weight</dt>
+  <dt><a name="BACKEND_WEIGHT"></a>backend_weight</dt>
   <dd>
       <p>Specifies the load balance ratio for the backends. Multiple
       backends can be specified by adding a number at the end of the
@@ -834,7 +834,7 @@ postmaster. You need to reload pgpool.conf if you change this value.
       </p>
   </dd>
 
-  <dt>backend_data_directory</dt>
+  <dt><a name="BACKEND_DATA_DIRECTORY"></a>backend_data_directory</dt>
   <dd>
       <p>Specifies the database cluster directory of the
       backends. Multiple backends can be specified by adding a number
@@ -851,7 +851,7 @@ postmaster. You need to reload pgpool.conf if you change this value.
       </p>
   </dd>
 
-  <dt><a name="ssl">ssl</a></dt>
+  <dt><a name="SSL">ssl</a></dt>
   <dd>
       <p>
       If true, enable SSL support for both the frontend and backend
@@ -870,7 +870,7 @@ postmaster. You need to reload pgpool.conf if you change this value.
       </p>
   </dd>
 
-  <dt>ssl_key</dt>
+  <dt><a name="SSL_KEY"></a>ssl_key</dt>
   <dd>
       <p>
       The path to the private key file to use for incoming frontend connections.
@@ -882,7 +882,7 @@ postmaster. You need to reload pgpool.conf if you change this value.
       </p>
   </dd>
 
-  <dt>ssl_cert</dt>
+  <dt><a name="SSL_CERT"></a>ssl_cert</dt>
   <dd>
       <p>
       The path to the public x509 certificate file to use for incoming 
@@ -895,7 +895,7 @@ postmaster. You need to reload pgpool.conf if you change this value.
       </p>
   </dd>
 
-  <dt>debug_level</dt>
+  <dt><a name="DEBUG_LEVEL"></a>debug_level</dt>
   <dd>
       <p>
           Debug message verbosity level. 0 means no message, greater than 1
@@ -903,7 +903,7 @@ postmaster. You need to reload pgpool.conf if you change this value.
       </p>
   </dd>
 
-  <dt>relcache_expire</dt>
+  <dt><a name="RELCACHE_EXPIRE"></a>relcache_expire</dt>
   <dd>
       <p>
           Life time of relation cache in seconds. 0 means no cache
@@ -944,7 +944,7 @@ connection pool function can be used. To enable this mode, set
 raw mode configuration parameters and parameters below.</p>
 
 <dl>
-  <dt>max_pool</dt>
+  <dt><a name="MAX_POOL"></a>max_pool</dt>
   <dd>
       <p>The maximum number of cached connections in pgpool-II
       children processes. pgpool-II reuses the cached connection if an
@@ -960,14 +960,14 @@ raw mode configuration parameters and parameters below.</p>
       This parameter can only be set at server start. </p>
   </dd>
 
-  <dt>connection_life_time</dt>
+  <dt><a name="CONNECTION_LIFE_TIME"></a>connection_life_time</dt>
   <dd>
       <p>Cached connections expiration time in seconds. An expired
       cached connection will be disconnected. Default is 0, which
       means the cached connections will not be disconnected.</p>
   </dd>
 
-  <dt>reset_query_list</dt>
+  <dt><a name="RESET_QUERY_LIST"></a>reset_query_list</dt>
   <dd>
       <p>Specifies the SQL commands sent to reset the connection
       to the backend when exiting a session. Multiple commands can be
@@ -1009,20 +1009,20 @@ You need to reload pgpool.conf upon modification of this directive.
 configuration parameters below must be set in addition to everything above.</p>
 
 <dl>
-  <dt>replication_mode
+  <dt><a name="REPLICATION_MODE"></a>replication_mode</dt>
   <dd>
       <p>Setting to true enables replication mode. Default
       is false.</p>
   </dd>
 
-  <dt>load_balance_mode</dt>
+  <dt><a name="LOAD_BALANCE_MODE"></a>load_balance_mode</dt>
   <dd>
       <p>When set to true, SELECT queries will be
       distributed to each backend for load balancing. Default is
       false.</p>
   </dd>
 
-  <dt>failover_if_affected_tuples_mismatch</dt>
+  <dt><a name="FAILOVER_IF_AFFECTED_TUPLES_MISMATCH"></a>failover_if_affected_tuples_mismatch</dt>
   <dd>
          <p>When set to true, if backends don't return the same number of affected
     tuples during an INSERT/UPDATE/DELETE, 
@@ -1031,7 +1031,7 @@ configuration parameters below must be set in addition to everything above.</p>
          degenerated. Default is false.</p>
   </dd>
 
-  <dt>replication_stop_on_mismatch</dt>
+  <dt><a name="REPLICATION_STOP_ON_MISMATCH"></a>replication_stop_on_mismatch</dt>
   <dd>
          <p>When set to true, if all backends don't return the same packet kind,
                the backends that differ from most
@@ -1047,8 +1047,7 @@ configuration parameters below must be set in addition to everything above.</p>
          degenerated. Default is false.</p>
   </dd>
 
-<a name="white_function_list"></a>
-<dt>white_function_list
+<dt><a name="WHITE_FUNCTION_LIST"></a>white_function_list</dt>
 <dd>
 <p>
 Specify a comma separated list of function names that <strong>do not</strong> 
@@ -1063,8 +1062,7 @@ white_function_list = 'get_.*,select_.*'
 </pre>
 </dd>
 
-<a name="black_function_list"></a>
-<dt>black_function_list
+<dt><a name="BLACK_FUNCTION_LIST"></a>black_function_list
 <dd>
 <p>
 Specify a comma separated list of function names that <strong>do</strong>
@@ -1098,12 +1096,11 @@ Adding to black_function_list will prevent load balancing.
 </p>
 </dd>
 
-<a name="replicate_select"></a>
-  <dt>replicate_select</dt>
-  <dd>
-      <p>When set to true, pgpool-II replicates SELECTs in replication mode. If false,
-         pgpool-II only sends them to the Master DB. Default is false.</p>
-
+<dt><a name="REPLICATE_SELECT"></a>replicate_select</dt>
+<dd>
+<p>When set to true, pgpool-II replicates SELECTs in replication mode. If false,
+pgpool-II only sends them to the Master DB. Default is false.
+</p>
 <p>
 If a SELECT query is inside an explicit transaction block, replicate_select and 
 load_balance_mode will have an effect on how replication works.
@@ -1164,7 +1161,7 @@ Details are shown below.
 </p>
   </dd>
 
-  <dt>insert_lock</dt>
+  <dt><a name="INSERT_LOCK"></a>insert_lock</dt>
   <dd>
       <p>If replicating a table with SERIAL data type, the SERIAL column
 value may differ between the backends. This problem is avoidable by
@@ -1232,21 +1229,21 @@ lock before that. The transaction will be aborted, and the following
 INSERT statement produces the above error message.</p>
 
 
-<dt>recovery_user
+<dt><a name="RECOVERY_USER"></a>recovery_user</dt>
 <dd>
 <p>
 This parameter specifies a PostgreSQL username for online recovery.
 It can be changed without restarting.
 </p>
 
-<dt>recovery_password
+<dt><a name="RECOVERY_PASSWORD"></a>recovery_password</dt>
 <dd>
 <p>
 This parameter specifies a PostgreSQL password for online recovery.
 It can be changed without restarting.
 </p>
 
-<dt>recovery_1st_stage_command
+<dt><a name="RECOVERY_1ST_STAGE_COMMAND"></a>recovery_1st_stage_command</dt>
 <dd>
 <p>
 This parameter specifies a command to be run at the first stage of online
@@ -1273,7 +1270,7 @@ data during this stage.
 This parameter can be changed without restarting.
 </p>
 
-<dt>recovery_2nd_stage_command
+<dt><a name="RECOVERY_2ND_STAGE_COMMAND"></a>recovery_2nd_stage_command</dt>
 <dd>
 <p>
 This parameter specifies a command to be run at the second stage of online
@@ -1303,7 +1300,7 @@ client is connected to pgpool-II anymore.
 This parameter can be changed without restarting.
 </p>
 
-<dt>recovery_timeout
+<dt><a name="RECOVERY_TIMEOUT"></a>recovery_timeout</dt>
 <dd>
 <p>
 pgpool does not accept new connections during the second stage. If a client
@@ -1318,7 +1315,7 @@ pgpool cancels online recovery and accepts connections. 0 means no wait.
 This parameter can be changed without restarting.
 </p>
 
-  <dt>client_idle_limit_in_recovery
+  <dt><a name="CLIENT_IDLE_LIMIT_IN_RECOVERY"></a>client_idle_limit_in_recovery</dt>
   <dd>
   <p> Similar to client_idle_limit but only takes effect in the second
           stage of recovery. A client being idle for client_idle_limit_in_recovery
@@ -1339,7 +1336,7 @@ This parameter can be changed without restarting.
   <p>
    You need to reload pgpool.conf if you change client_idle_limit_in_recovery.</p>
 
-<dt><a name="lobj_lock_table"></a>lobj_lock_table
+<dt><a name="LOBJ_LOCK_TABLE"></a>lobj_lock_table</dt>
 <dd>
 <p>
 This parameter specifies a table name used for large object replication control. 
@@ -1780,44 +1777,44 @@ pgpool-II. The System DB's configuration is done in
 <code>pgpool.conf</code>.</p>
 
 <dl>
-  <dt>system_db_hostname</dt>
+  <dt><a name="SYSTEM_DB_HOSTNAME"></a>system_db_hostname</dt>
   <dd>
       <p>The hostname where the System DB is. Specifying the
       empty string ('') means the System DB is on the same host as
       pgpool-II, and will be accessed via a UNIX domain socket.</p>
   </dd>
 
-  <dt>system_db_port</dt>
+  <dt><a name="SYSTEM_DB_PORT"></a>system_db_port</dt>
   <dd>
       <p>The port number for the System DB</p>
   </dd>
 
-  <dt>system_dbname</dt>
+  <dt><a name="SYSTEM_DBNAME"></a>system_dbname</dt>
   <dd>
       <p>The partitioning rules and other information will be defined
       in the database specified here. Default value is:
       <code>'pgpool'</code>.</p>
   </dd>
 
-  <dt>system_db_schema</dt>
+  <dt><a name="SYSTEM_DB_SCHEMA"></a>system_db_schema</dt>
   <dd>
       <p>The partitioning rules and other information will be defined
       in the schema specified here. Default value is:
       <code>'pgpool_catalog'</code>.</p>
   </dd>
 
-  <dt>system_db_user</dt>
+  <dt><a name="SYSTEM_DB_USER"></a>system_db_user</dt>
   <dd>
       <p>The username to connect to the System DB.</p>
   </dd>
 
-  <dt>system_db_password</dt>
+  <dt><a name="SYSTEM_DB_PASSWORD"></a>system_db_password</dt>
   <dd>
       <p>The password for the System DB. If no password is necessary,
       set the empty string ('').</p>
   </dd>
 
-  <dt>ssl_ca_cert</dt>
+  <dt><a name="SSL_CA_CERT"></a>ssl_ca_cert</dt>
   <dd>
       <p>
       The path to a PEM format file containing one or more CA root
@@ -1834,7 +1831,7 @@ pgpool-II. The System DB's configuration is done in
       </p>
   </dd>
 
-  <dt>ssl_ca_cert_dir</dt>
+  <dt><a name="SSL_CA_CERT_DIR"></a>ssl_ca_cert_dir</dt>
   <dd>
       <p>
       The path to a directory containing PEM format CA certficate
index 2298ab38650dd4edb719feaaf5219557b88066e0..8a6399fe23f3f70c207b55e945acd4cd3cad3365 100644 (file)
@@ -383,7 +383,7 @@ pgpool.conf\e$B$G$O6uGr9T$d\e(B#\e$B$G;O$^$k9T$O%3%a%s%H$H8+$J$5$l$^$9!#\e(B
 </p>
 
 <dl>
-<dt>listen_addresses
+<dt><a name="LISTEN_ADDRESS"></a>listen_addresses</dt>
 <dd>
 <p>
 pgpool-II\e$B$,\e(BTCP/IP\e$B%3%M%/%7%g%s$r<u$1IU$1$k%"%I%l%9$r%[%9%HL>$^$?$O\e(BIP\e$B%"%I%l%9$G\e(B
@@ -394,7 +394,7 @@ UNIX\e$B%I%a%$%s%=%1%C%H7PM3$N%3%M%/%7%g%s$O>o$K<u$1IU$1$^$9!#$3$N%Q%i%a!<\e(B
 \e$B%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>port
+<dt><a name="PORT"></a>port</dt>
 <dd>
 <p>
 pgpool-II\e$B$,%3%M%/%7%g%s$r<u$1IU$1$k%]!<%HHV9f$G$9!#%G%U%)%k%HCM$O\e(B9999
@@ -402,7 +402,7 @@ pgpool-II\e$B$,%3%M%/%7%g%s$r<u$1IU$1$k%]!<%HHV9f$G$9!#%G%U%)%k%HCM$O\e(B9999
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>socket_dir
+<dt><a name="SOCKET_DIR"></a>socket_dir</dt>
 <dd>
 <p>
 pgpool-II\e$B$,%3%M%/%7%g%s$r<u$1IU$1$k\e(BUNIX\e$B%I%a%$%s%=%1%C%H$rCV$/%G%#%l%/%H%j$G$9!#\e(B
@@ -410,14 +410,14 @@ pgpool-II\e$B$,%3%M%/%7%g%s$r<u$1IU$1$k\e(BUNIX\e$B%I%a%$%s%=%1%C%H$rCV$/%G%#%l%/%H
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>pcp_port
+<dt><a name="PCP_PORT"></a>pcp_port</dt>
 <dd>
 <p>
 pcp\e$B$,;HMQ$9$k%]!<%HHV9f$G$9!#\e(B
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>pcp_socket_dir
+<dt><a name="PCP_SOCKET_DIR"></a>pcp_socket_dir</dt>
 <dd>
 <p>
 pcp\e$B$,%3%M%/%7%g%s$r<u$1IU$1$k\e(BUNIX\e$B%I%a%$%s%=%1%C%H$rCV$/%G%#%l%/%H%j$G$9!#\e(B
@@ -425,7 +425,7 @@ pcp\e$B$,%3%M%/%7%g%s$r<u$1IU$1$k\e(BUNIX\e$B%I%a%$%s%=%1%C%H$rCV$/%G%#%l%/%H%j$G$9
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>backend_socket_dir
+<dt><a name="BACKEND_SOCKET_DIR"></a>backend_socket_dir</dt>
 <dd>
 <p>
 UNIX\e$B%I%a%$%s%=%1%C%H7PM3$G\e(Bpgpool-II\e$B$,\e(BPostgreSQL\e$B$H@\B3$9$k:]$K;HMQ$9$k\e(B
@@ -434,7 +434,7 @@ PostgreSQL\e$B$N\e(BUNIX\e$B%I%a%$%s%=%1%C%H$,CV$+$l$F$$$k%G%#%l%/%H%j!#%G%U%)%k%HC
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>pcp_timeout
+<dt><a name="PCP_TIMEOUT"></a>pcp_timeout</dt>
 <dd>
 <p>
 pcp\e$B$,\e(Bpgppool\e$B$H@\B3$9$k:]$N%?%$%`%"%&%HCM!#\e(B0\e$B$K$9$k$H%?%$%`%"%&%H$7$^$;$s!#\e(B
@@ -442,7 +442,7 @@ pcp\e$B$,\e(Bpgppool\e$B$H@\B3$9$k:]$N%?%$%`%"%&%HCM!#\e(B0\e$B$K$9$k$H%?%$%`%"%&%H$7
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>num_init_children
+<dt><a name="NUM_INIT_CHILDREN"></a>num_init_children</dt>
 <dd>
 <p>
 prefork\e$B$9$k\e(Bpgpool-II\e$B$N%5!<%P%W%m%;%9$N?t$G$9!#%G%U%)%k%HCM$O\e(B32\e$B$K$J$C$F$$$^$9!#\e(B
@@ -469,7 +469,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>child_life_time
+<dt><a name="CHILD_LIFE_TIME"></a>child_life_time</dt>
 <dd>
 <p>
    pgpool-II\e$B$N;R%W%m%;%9$N<wL?$G$9!#%"%$%I%k>uBV$K$J$C$F$+$i\e(B
@@ -481,7 +481,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>child_max_connections
+<dt><a name="CHILD_MAX_CONNECTIONS"></a>child_max_connections</dt>
 <dd>
 <p>
    \e$B3F\e(Bpgpool-II\e$B;R%W%m%;%9$X$N@\B32s?t$,$3$N@_DjCM$rD6$($k$H!"$=$N;R%W%m\e(B
@@ -491,7 +491,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>client_idle_limit
+<dt><a name="CLIENT_IDLE_LIMIT"></a>client_idle_limit</dt>
 <dd>
 <p>
   \e$BA02s%/%i%$%"%s%H$+$iMh$?%/%(%j$+$i!"\e(Bclient_idle_limit \e$BIC1[$($F$b<!$N\e(B
@@ -502,7 +502,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>authentication_timeout
+<dt><a name="AUTHENTICATION_TIMEOUT"></a>authentication_timeout</dt>
 <dd>
 <p>
    \e$BG'>Z=hM}$N%?%$%`%"%&%H;~4V$rICC10L$G;XDj$7$^$9!#\e(B0 \e$B$r;XDj$9$k$H%?%$\e(B
@@ -511,14 +511,14 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>logdir
+<dt><a name="LOGDIR"></a>logdir</dt>
 <dd>
 <p>
    pgpool-II\e$B$N3F<o%m%0%U%!%$%k$r3JG<$9$k%G%#%l%/%H%j$G$9!#\e(B
    \e$B$3$N2<$K\e(BDB\e$B%N!<%I$N>uBV$r5-O?$9$k\e(Bpgpool_status\e$B%U%!%$%k$,=q$+$l$^$9!#\e(B
 </p>
 
-<dt>pid_file_name
+<dt><a name="PID_FILE_NAME"></a>pid_file_name</dt>
 <dd>
 <p>
    pgpool-II\e$B$N\e(Bpid file(\e$B%W%m%;%9\e(BID\e$B$r3JG<$7$?%U%!%$%k\e(B)\e$B$N%U%k%Q%9L>$G$9!#\e(B
@@ -526,7 +526,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
    \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>print_timestamp
+<dt><a name="PRINT_TIMESTAMP"></a>print_timestamp</dt>
 <dd>
 <p>
    true\e$B$J$i$P\e(Bpgpool-II\e$B$N%m%0$K%?%$%`%9%?%s%W$rDI2C$7$^$9!#%G%U%)%k%H$O\e(B
@@ -534,14 +534,14 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>connection_cache
+<dt><a name="CONNECTION_CACHE"></a>connection_cache</dt>
 <dd>
 <p>
    true\e$B$J$i\e(BPostgreSQL\e$B$X$N%3%M%/%7%g%s$r%-%c%C%7%e$7$^$9!#%G%U%)%k%H$O\e(Btrue\e$B$G$9!#\e(B
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>health_check_timeout
+<dt><a name="HEALTH_CHECK_TIMEOUT"></a>health_check_timeout</dt>
 <dd>
 <p>
    pgpool-II\e$B$O%5!<%P>c32$d%M%C%H%o!<%/>c32$r8!CN$9$k$?$a$K!"Dj4|E*$K%P%C\e(B
@@ -559,7 +559,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>health_check_period
+<dt><a name="HEALTH_CHECK_PERIOD"></a>health_check_period</dt>
 <dd>
 <p>
    \e$B%X%k%9%A%'%C%/$r9T$&4V3V$rICC10L$G;XDj$7$^$9!#\e(B0\e$B$r;XDj$9$k$H%X%k%9\e(B
@@ -568,14 +568,14 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>health_check_user
+<dt><a name="HEALTH_CHECK_USER"></a>health_check_user</dt>
 <dd>
 <p>
    \e$B%X%k%9%A%'%C%/$r9T$&$?$a$N\e(BPostgreSQL\e$B%f!<%6L>$G$9!#\e(B
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>failover_command
+<dt><a name="FAILOVER_COMMAND"></a>failover_command</dt>
 <dd>
 <p>
 \e$B%N!<%I$,@Z$jN%$5$l$?;~$K<B9T$9$k%3%^%s%I$r;XDj$7$^$9!#FC<lJ8;z$r;XDj$9\e(B
@@ -603,7 +603,7 @@ max_pool*num_init_children*2 <= (max_connections - superuser_reserved_connection
 \e$B$=$N$"$H$G?7$7$$\e(Bpgpool\e$B$N;R%W%m%;%9$,5/F0$5$l!"%/%i%$%"%s%H$+$i$N@\B3$r<u$1IU$1$i$l$k>uBV$K$J$j$^$9!#\e(B
 </p>
 
-<dt>failback_command
+<dt><a name="FAILBACK_COMMAND"></a>failback_command</dt>
 <dd>
 <p>
 \e$B%N!<%I$,I|5"$7$?;~$K<B9T$9$k%3%^%s%I$r;XDj$7$^$9!#FC<lJ8;z$r;XDj$9$k$H!"\e(B
@@ -627,7 +627,7 @@ pgpool \e$B$,I,MW$J>pJs$KCV$-49$($F%3%^%s%I$r<B9T$7$^$9!#\e(B
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>follow_master_command
+<dt><a name="FOLLOW_MASTER_COMMAND"></a>follow_master_command</dt>
 <dd>
 <p>
 \e$B%^%9%?!<%N!<%I$N%U%'%$%k%*!<%P!<8e$K<B9T$9$k%3%^%s%I$r;XDj$7$^$9!#\e(B
@@ -655,7 +655,7 @@ pgpool \e$B$,I,MW$J>pJs$KCV$-49$($F%3%^%s%I$r<B9T$7$^$9!#\e(B
 \e$B6uJ8;zNs0J30$r;XDj$9$k$H!"%^%9%?!<%N!<%I$N%U%'%$%k%*!<%P!<8e$K?7$7$$%^%9%?!<0J30$N$9$Y$F$N%N!<%I$O@Z$jN%$5$l!"%/%i%$%"%s%H$+$i:F$S@\B3$r<u$1IU$1$k$?$a$K;R%W%m%;%9$N:F5/F0$,9T$o$l$^$9!#$=$N8e!"@Z$jN%$5$l$?$=$l$>$l$N%N!<%I$KBP$7$F\e(Bfollow_master_command\e$B$K;XDj$7$?%3%^%s%I$,<B9T$5$l$^$9!#DL>o$O!"$3$3$K\e(Bpcp_recovery_node\e$B%3%^%s%I$rAH$_9~$s$@%7%'%k%9%/%j%W%H$J$I$r;XDj$7!"?7$7$$%^%9%?!<$+$i%9%l!<%V$r%j%+%P%j$9$k$?$a$K;HMQ$7$^$9!#\e(B
 </p>
 
-<dt>fail_over_on_backend_error
+<dt><a name="FAIL_OVER_ON_BACKEND_ERROR"></a>fail_over_on_backend_error</dt>
 <dd>
 <p>
    true\e$B$J$i$P!"%P%C%/%(%s%I$N%=%1%C%H$X$N=q$-9~$_$K<:GT$9$k$H%U%'%$%k%*!<%P$7$^$9!#\e(B
@@ -666,7 +666,7 @@ false\e$B$K$9$k$H!"%U%'%$%k%*!<%P$;$:!"C1$K%(%i!<$,%l%]!<%H$5$l$F%;%C%7%g%s$,@ZCG
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>ignore_leading_white_space
+<dt><a name="IGNORE_LEADING_WHITE_SPACE"></a>ignore_leading_white_space</dt>
 <dd>
 <p>
    true\e$B$J$i$P!"\e(Bload balance\e$B$N:]$K\e(BSQL\e$BJ89TF,$N6uGr$rL5;k$7$^$9\e(B(\e$BA43Q%9\e(B
@@ -676,7 +676,7 @@ false\e$B$K$9$k$H!"%U%'%$%k%*!<%P$;$:!"C1$K%(%i!<$,%l%]!<%H$5$l$F%;%C%7%g%s$,@ZCG
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>log_statement
+<dt><a name="LOG_STATEMENT"></a>log_statement</dt>
 <dd>
 <p>
    true\e$B$J$i$P\e(BSQL\e$BJ8$r%m%0=PNO$7$^$9!#$3$NLrL\$O\e(BPostgreSQL\e$B$N\e(B
@@ -685,14 +685,14 @@ false\e$B$K$9$k$H!"%U%'%$%k%*!<%P$;$:!"C1$K%(%i!<$,%l%]!<%H$5$l$F%;%C%7%g%s$,@ZCG
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>log_per_node_statement
+<dt><a name="LOG_PER_NODE_STATEMENT"></a>log_per_node_statement</dt>
 <dd>
 <p>
    log_statement\e$B$H;w$F$$$^$9$,!"\e(BDB\e$B%N!<%IC10L$G%m%0$,=PNO$5$l$k$N$G!"%l%W%j%1!<%7%g%s$dIi2YJ,;6$N3NG'$,MF0W$G$9!#\e(B
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>log_hostname
+<dt><a name="LOG_HOSTNAME"></a>log_hostname</dt>
 <dd>
 <p>
    true\e$B$J$i$P!"\e(Bps\e$B%3%^%s%I$G$N>uBVI=<(;~$K\e(BIP\e$B%"%I%l%9$G$O$J$/!"%[%9%HL>\e(B
@@ -701,14 +701,14 @@ false\e$B$K$9$k$H!"%U%'%$%k%*!<%P$;$:!"C1$K%(%i!<$,%l%]!<%H$5$l$F%;%C%7%g%s$,@ZCG
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>log_connections
+<dt><a name="LOG_CONNECTIONS"></a>log_connections</dt>
 <dd>
 <p>
    true\e$B$J$i$P!"A4$F$N%/%i%$%"%s%H@\B3$r%m%0$X=PNO$7$^$9!#\e(B
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>enable_pool_hba
+<dt><a name="ENABLE_POOL_HBA"></a>enable_pool_hba</dt>
 <dd>
 <p>
    true\e$B$J$i$P!"\e(Bpool_hba.conf\e$B$K=>$C$F%/%i%$%"%s%HG'>Z$r9T$$$^$9!#\e(B
@@ -717,7 +717,7 @@ false\e$B$K$9$k$H!"%U%'%$%k%*!<%P$;$:!"C1$K%(%i!<$,%l%]!<%H$5$l$F%;%C%7%g%s$,@ZCG
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>backend_hostname
+<dt><a name="BACKEND_HOSTNAME"></a>backend_hostname</dt>
 <dd>
 <p>
 \e$B;HMQ$9$k\e(BPostgreSQL\e$B%5!<%P$N%[%9%HL>$r;XDj$7$^$9!#6uJ8;z$r;XDj$9$k$H\e(BUNIX\e$B%I\e(B
@@ -738,7 +738,7 @@ backend_hostname \e$B$O?7$7$/DI2C$7$?9T$r@_Dj%U%!%$%k:FFI$_9~$_$GDI2C$9$k\e(B
 \e$B$k>l9g$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>backend_port
+<dt><a name="BACKEND_PORT"></a>backend_port</dt>
 <dd>
 <p>
 \e$B;HMQ$9$k\e(BPostgreSQL\e$B%5!<%P$N%]!<%HHV9f$r;XDj$7$^$9!#\e(B
@@ -754,7 +754,7 @@ backend_port \e$B$O?7$7$/DI2C$7$?9T$r@_Dj%U%!%$%k:FFI$_9~$_$GDI2C$9$k\e(B
 </p>
 
 
-<dt>backend_weight
+<dt><a name="BACKEND_WEIGHT"></a>backend_weight</dt>
 <dd>
 <p>
 \e$B;HMQ$9$k\e(BPostgreSQL\e$B%5!<%P$KBP$9$kIi2YJ,;6$NHfN($r\e(B0\e$B0J>e$N@0?t$^$?$OIbF0>.?tE@$G;XDj$7$^$9!#\e(B
@@ -769,7 +769,7 @@ pgpool-II 2.2.6/2.3\e$B0J9_$G$O!"@_Dj%U%!%$%k$N:FFI9~$G\e(Bbackend_weight\e$BCM$rJQ
 \e$B?7$7$/@\B3$7$?%/%i%$%"%s%H%;%C%7%g%s$+$i!"$3$N?7$7$$\e(Bweight\e$BCM$,H?1G$5$l$^$9!#\e(B
 </p>
 
-<dt>backend_data_directory
+<dt><a name="BACKEND_DATA_DIRECTORY"></a>backend_data_directory</dt>
 <dd>
 <p>
 \e$B;HMQ$9$k\e(B PostgreSQL \e$B%5!<%P$N%G!<%?%Y!<%9%/%i%9%?$N%Q%9$r;XDj$7$^$9!#\e(B
@@ -785,7 +785,7 @@ backend_data_directory \e$B$O?7$7$/DI2C$7$?9T$r@_Dj%U%!%$%k:FFI$_9~$_$GDI2C$9$k\e(
 \e$B$k>l9g$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-  <dt><a name="ssl">ssl</a></dt>
+  <dt><a name="SSL">ssl</a></dt>
   <dd>
       <p>
         true\e$B$J$i$P\e(Bpgpool-II\e$B$H%U%m%s%H%(%s%I!"\e(Bpgpool-II\e$B$H%P%C%/%(%s%I$N4V$N\e(BSSL\e$B@\B3$,2DG=$K$J$j$^$9!#\e(B
@@ -801,7 +801,7 @@ backend_data_directory \e$B$O?7$7$/DI2C$7$?9T$r@_Dj%U%!%$%k:FFI$_9~$_$GDI2C$9$k\e(
       </p>
   </dd>
 
-  <dt>ssl_key</dt>
+  <dt><a name="SSL_KEY"></a>ssl_key</dt>
   <dd>
       <p>
         \e$B%U%m%s%H%(%s%I$H$N@\B3$K;HMQ$9$k%W%i%$%Y!<%H%-!<%U%!%$%k$N%U%k%Q%9$r;XDj$7$^$9!#\e(B
@@ -813,7 +813,7 @@ backend_data_directory \e$B$O?7$7$/DI2C$7$?9T$r@_Dj%U%!%$%k:FFI$_9~$_$GDI2C$9$k\e(
       </p>
   </dd>
 
-  <dt>ssl_cert</dt>
+  <dt><a name="SSL_CERT"></a>ssl_cert</dt>
   <dd>
       <p>
         \e$B%U%m%s%H%(%s%I$H$N@\B3$K;HMQ$9$k8x3+\e(Bx509\e$B>ZL@=q$N%U%k%Q%9$r;XDj$7$^$9!#\e(B
@@ -824,7 +824,7 @@ backend_data_directory \e$B$O?7$7$/DI2C$7$?9T$r@_Dj%U%!%$%k:FFI$_9~$_$GDI2C$9$k\e(
         ssl_cert\e$B$N@_Dj$,$J$$>l9g$O!"%U%m%s%H%(%s%I$H$N@\B3$G\e(BSSL\e$B$,;HMQ$5$l$J$/$J$j$^$9!#\e(B
       </p>
 
-  <dt>debug_level</dt>
+  <dt><a name="DEBUG_LEVEL"></a>debug_level</dt>
   <dd>
       <p>
         \e$B%G%P%C%0%a%C%;!<%8$N>\:Y%l%Y%k!#\e(B0\e$B$G%G%P%C%0%a%C%;!<%8$N=PNO$J$7!#\e(B
@@ -834,7 +834,7 @@ backend_data_directory \e$B$O?7$7$/DI2C$7$?9T$r@_Dj%U%!%$%k:FFI$_9~$_$GDI2C$9$k\e(
       </p>
   </dd>
 
-  <dt>relcache_expire</dt>
+  <dt><a name="RELCACHE_EXPIRE"></a>relcache_expire</dt>
   <dd>
       <p>
         \e$B%j%l!<%7%g%s%-%c%C%7%e$N<wL?$rICC10L$G;XDj$7$^$9!#\e(B
@@ -872,7 +872,7 @@ raw\e$B%b!<%I$K2C$(!"%3%M%/%7%g%s%W!<%j%s%0$,MxMQ$G$-$k$h$&$K$J$j$^$9!#\e(B
 </p>
 
 <dl>
-<dt>max_pool
+<dt><a name="MAX_POOL"></a>max_pool</dt>
 <dd>
 <p>
    pgpool-II\e$B$N3F%5!<%P%W%m%;%9$,%-!<%W$9$k\e(BPostgreSQL\e$B$X$N:GBg%3%M%/%7%g%s\e(B
@@ -891,7 +891,7 @@ raw\e$B%b!<%I$K2C$(!"%3%M%/%7%g%s%W!<%j%s%0$,MxMQ$G$-$k$h$&$K$J$j$^$9!#\e(B
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>connection_life_time
+<dt><a name="CONNECTION_LIFE_TIME"></a>connection_life_time</dt>
 <dd>
 <p>
    \e$B%3%M%/%7%g%s%W!<%kCf$N%3%M%/%7%g%s$NM-8z4|4V$rICC10L$G;XDj$7$^$9!#\e(B0
@@ -900,7 +900,7 @@ raw\e$B%b!<%I$K2C$(!"%3%M%/%7%g%s%W!<%j%s%0$,MxMQ$G$-$k$h$&$K$J$j$^$9!#\e(B
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>reset_query_list
+<dt><a name="RESET_QUERY_LIST"></a>reset_query_list</dt>
 <dd>
 <p>
    \e$B%;%C%7%g%s$,=*N;$9$k$H$-$K%3%M%/%7%g%s$r=i4|2=$9$k$?$a$N\e(BSQL\e$B%3%^%s%I\e(B
@@ -950,7 +950,7 @@ raw\e$B%b!<%I!"%3%M%/%7%g%s%W!<%k%b!<%I$K2C$(!"0J2<$r@_Dj$7$^$9!#\e(B
 </p>
 
 <dl>
-<dt>replication_mode
+<dt><a name="REPLICATION_MODE"></a>replication_mode</dt>
 <dd>
 <p>
    \e$B%l%W%j%1!<%7%g%s%b!<%I$GF0:n$5$;$k>l9g$O\e(Btrue\e$B$r;XDj$7$F$/$@$5$$!#%G\e(B
@@ -958,14 +958,14 @@ raw\e$B%b!<%I!"%3%M%/%7%g%s%W!<%k%b!<%I$K2C$(!"0J2<$r@_Dj$7$^$9!#\e(B
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>load_balance_mode
+<dt><a name="LOAD_BALANCE_MODE"></a>load_balance_mode</dt>
 <dd>
 <p>
    true\e$B$r;XDj$9$k$H%l%W%j%1!<%7%g%s%b!<%I$^$?$O%^%9%?!<%9%l!<%V%b!<%I$N:]$K!"\e(BSELECT\e$BJ8$r%m!<%I%P%i%s%9$7$F8!:w@-G=$r8~>e$5$;$k$3$H$,$G$-$^$9!#%G%U%)%k%HCM$O\e(Bfalse\e$B$G$9!#\e(B
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>replication_stop_on_mismatch
+<dt><a name="REPLICATION_STOP_ON_MISMATCH"></a>replication_stop_on_mismatch</dt>
 <dd>
 <p>
    \e$B3F\e(BDB\e$B%N!<%I$+$iAw$i$l$F$/$k%Q%1%C%H$N<oN`$,IT0lCW$K$J$C$?>l9g$K!"\e(BDB\e$B%N!<%I$r@Z$jJ|$7$F=LB`1?E>$KF~$j$^$9!#\e(B
@@ -977,7 +977,7 @@ raw\e$B%b!<%I!"%3%M%/%7%g%s%W!<%k%b!<%I$K2C$(!"0J2<$r@_Dj$7$^$9!#\e(B
 \e$B%G%U%)%k%HCM$O\e(Bfalse\e$B$G$9!#\e(B
 </p>
 
-<dt>failover_if_affected_tuples_mismatch
+<dt><a name="FAILOVER_IF_AFFECTED_TUPLES_MISMATCH"></a>failover_if_affected_tuples_mismatch</dt>
 <dd>
 <p>
    \e$B3F\e(BDB\e$B%N!<%I$G<B9T$5$l$?\e(BINSERT/UPDATE/DELETE\e$B$N7k2L9T?t$,IT0lCW$K$J$C$?>l9g$K!"\e(BDB\e$B%N!<%I$r@Z$jJ|$7$F=LB`1?E>$KF~$j$^$9!#\e(B
@@ -987,8 +987,7 @@ raw\e$B%b!<%I!"%3%M%/%7%g%s%W!<%k%b!<%I$K2C$(!"0J2<$r@_Dj$7$^$9!#\e(B
 \e$B%G%U%)%k%HCM$O\e(Bfalse\e$B$G$9!#\e(B
 </p>
 
-<a name="white_function_list"></a>
-<dt>white_function_list
+<dt><a name="WHITE_FUNCTION_LIST"></a>white_function_list</dt>
 <dd>
 <p>
 \e$B%G!<%?%Y!<%9$KBP$7$F\e(B<strong>\e$B99?7$r9T$J$o$J$$4X?tL>\e(B</strong>\e$B$r%3%s%^6h@Z$j$G;XDj$7$^$9!#\e(B
@@ -996,8 +995,7 @@ raw\e$B%b!<%I!"%3%M%/%7%g%s%W!<%k%b!<%I$K2C$(!"0J2<$r@_Dj$7$^$9!#\e(B
 (\e$B%^%9%?!<%9%l!<%V%b!<%I$K$*$$$F$O!"%^%9%?!<\e(B(primary)DB\e$B%N!<%I$K$N$_Aw?.$5$l$^$9\e(B)\e$B!#\e(B
 </p>
 
-<a name="black_function_list"></a>
-<dt>black_function_list
+<dt><a name="BLACK_FUNCTION_LIST"></a>black_function_list</dt>
 <dd>
 <p>
 \e$B%G!<%?%Y!<%9$KBP$7$F\e(B<strong>\e$B99?7$r9T$J$&4X?tL>\e(B</strong>\e$B$r%3%s%^6h@Z$j$G;XDj$7$^$9!#\e(B
@@ -1017,8 +1015,7 @@ white_function_list = ''
 black_function_list = 'nextval,setval'
 </pre>
 
-<a name="replicate_select"></a>
-<dt>replicate_select
+<dt><a name="REPLICATE_SELECT"></a>replicate_select</dt>
 <dd>
 <p>
 true \e$B$r@_Dj$9$k$H!"%l%W%j%1!<%7%g%s%b!<%I$G$O\e(B SELECT \e$BJ8$r%l%W%j%1!<%7%g%s$7$^$9!#$3$l$O\e(B pgpool-II 1.0 \e$B$^$G$N5sF0$HF1$8$K$J$j$^$9!#\e(Bfalse \e$B$r@_Dj$9$k$H\e(B SELECT \e$BJ8$r%^%9%?$N$_$KAw?.$7$^$9!#%G%U%)%k%HCM$O\e(B false \e$B$G$9!#\e(B
@@ -1080,7 +1077,7 @@ replicate_select\e$B!"\e(Bload_balance_mode\e$B!"\e(BSELECT\e$BLd9g$o$;$,L@<(E*$J%H%i
 </table>
 </p>
 
-<dt>insert_lock
+<dt><a name="INSERT_LOCK"></a>insert_lock</dt>
 <dd>
 <p>
    SERIAL\e$B7?$r;H$C$F$$$k%F!<%V%k$r%l%W%j%1!<%7%g%s$9$k$H!"\e(BSERIAL\e$B7?$NNs\e(B
@@ -1151,21 +1148,21 @@ replicate_select\e$B!"\e(Bload_balance_mode\e$B!"\e(BSELECT\e$BLd9g$o$;$,L@<(E*$J%H%i
 </p>
 
 
-<dt>recovery_user
+<dt><a name="RECOVERY_USER"></a>recovery_user</dt>
 <dd>
 <p>
    \e$B%*%s%i%$%s%j%+%P%j$r9T$&$?$a$N\e(B PostgreSQL \e$B%f!<%6L>$G$9!#\e(B
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>recovery_password
+<dt><a name="RECOVERY_PASSWORD"></a>recovery_password</dt>
 <dd>
 <p>
    \e$B%*%s%i%$%s%j%+%P%j$r9T$&$?$a$N\e(B PostgreSQL \e$B%f!<%6%Q%9%o!<%I$G$9!#\e(B
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>recovery_1st_stage_command
+<dt><a name="RECOVERY_1ST_STAGE_COMMAND"></a>recovery_1st_stage_command</dt>
 <dd>
 <p>
   \e$B:G=i$K%*%s%i%$%s%j%+%P%jCf$K5/F0$9$k%3%^%s%IL>$r;XDj$7$^$9!#%3%^%s%I\e(B
@@ -1192,7 +1189,7 @@ recovery_1st_stage_command \e$B$O<!$N\e(B3\e$B$D$N0z?t$r<u$1$H$j$^$9!#\e(B
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>recovery_2nd_stage_command
+<dt><a name="RECOVERY_2ND_STAGE_COMMAND"></a>recovery_2nd_stage_command</dt>
 <dd>
 <p>
   2 \e$B2sL\$N%*%s%i%$%s%j%+%P%jCf$K5/F0$9$k%3%^%s%IL>$r;XDj$7$^$9!#%3%^%s\e(B
@@ -1222,7 +1219,7 @@ recovery_2nd_stage_command \e$B$O<!$N\e(B3\e$B$D$N0z?t$r<u$1$H$j$^$9!#\e(B
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>recovery_timeout
+<dt><a name="RECOVERY_TIMEOUT"></a>recovery_timeout</dt>
 <dd>
 <p>
   pgpool\e$B$O!"%*%s%i%$%s%j%+%P%j$N:]$K$9$Y$F$N%/%i%$%"%s%H$,@\B3$r=*N;$9$k$^$GBT$A$^$9!#\e(B
@@ -1242,7 +1239,7 @@ recovery_timeout\e$B$r\e(B0\e$B$H$7$F$b%?%$%`%"%&%H$,L58z$K$J$k$o$1$G$O$J$/!"C1$KB(
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>client_idle_limit_in_recovery
+<dt><a name="CLIENT_IDLE_LIMIT_IN_RECOVERY"></a>client_idle_limit_in_recovery</dt>
 <dd>
 <p>
   client_idle_limit\e$B$H;w$F$$$^$9$,!"$3$N%Q%i%a!<%?$O%j%+%P%j$N%;%+%s%I%9\e(B
@@ -1261,7 +1258,7 @@ recovery_timeout\e$B$r\e(B0\e$B$H$7$F$b%?%$%`%"%&%H$,L58z$K$J$k$o$1$G$O$J$/!"C1$KB(
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O@_Dj%U%!%$%k$r:FFI$_9~$_$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>lobj_lock_table
+<dt><a name="LOBJ_LOCK_TABLE"></a>lobj_lock_table</dt>
 <dd>
 <p>
 \e$B%i!<%8%*%V%8%'%/%H$N%l%W%j%1!<%7%g%s$r9T$$$?$$$H$-$K%m%C%/4IM}$K;H$&$?$a$N%F!<%V%kL>$r;XDj$7$^$9!#\e(B
@@ -1680,7 +1677,7 @@ PostgreSQL\e$B$N%F!<%V%k$N7A$GJ];}$7$^$9!#%7%9%F%`\e(BDB\e$B$O\e(Bpgpool\e$B$,F0:n$9$
 </p>
 
 <dl>
-<dt>system_db_hostname
+<dt><a name="SYSTEM_DB_HOSTNAME"></a>system_db_hostname</dt>
 <dd>
 <p>
 \e$B%7%9%F%`\e(BDB\e$B$,F0$$$F$$$k%[%9%HL>$G$9!#6uJ8;z$r;XDj$9$k$H!"\e(BUNIX\e$B%I%a%$%s%=%1%C\e(B
@@ -1688,14 +1685,14 @@ PostgreSQL\e$B$N%F!<%V%k$N7A$GJ];}$7$^$9!#%7%9%F%`\e(BDB\e$B$O\e(Bpgpool\e$B$,F0:n$9$
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>system_db_port
+<dt><a name="SYSTEM_DB_PORT"></a>system_db_port</dt>
 <dd>
 <p>
 \e$B%7%9%F%`\e(BDB\e$B$N%]!<%HHV9f$G$9!#$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II
 \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>system_dbname
+<dt><a name="SYSTEM_DBNAME"></a>system_dbname</dt>
 <dd>
 <p>
 \e$B%7%9%F%`\e(BDB\e$B$O@lMQ$N%G!<%?%Y!<%9$K@_CV$7$^$9!#$=$N%G!<%?%Y!<%9L>$r;XDj$7$^$9!#\e(B
@@ -1704,7 +1701,7 @@ PostgreSQL\e$B$N%F!<%V%k$N7A$GJ];}$7$^$9!#%7%9%F%`\e(BDB\e$B$O\e(Bpgpool\e$B$,F0:n$9$
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>system_db_schema
+<dt><a name="SYSTEM_DB_SCHEMA"></a>system_db_schema</dt>
 <dd>
 <p>
 \e$B%7%9%F%`\e(BDB\e$B$O@lMQ$N%9%-!<%^$K@_CV$7$^$9!#$=$N%9%-!<%^L>$r;XDj$7$^$9!#\e(B
@@ -1713,14 +1710,14 @@ PostgreSQL\e$B$N%F!<%V%k$N7A$GJ];}$7$^$9!#%7%9%F%`\e(BDB\e$B$O\e(Bpgpool\e$B$,F0:n$9$
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>system_db_user
+<dt><a name="SYSTEM_DB_USER"></a>system_db_user</dt>
 <dd>
 <p>
 \e$B%7%9%F%`\e(BDB\e$B$K@\B3$9$k$H$-$N%f!<%6L>$G$9!#\e(B
 \e$B$3$N%Q%i%a!<%?$rJQ99$7$?;~$K$O\e(B pgpool-II \e$B$r:F5/F0$7$F$/$@$5$$!#\e(B
 </p>
 
-<dt>system_db_password
+<dt><a name="SYSTEM_DB_PASSWORD"></a>system_db_password</dt>
 <dd>
 <p>
 \e$B%7%9%F%`\e(BDB\e$B$K@\B3$9$k$H$-$N%Q%9%o!<%I$G$9!#%Q%9%o!<%I$r@_Dj$7$F$$$J$$>l9g\e(B