<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
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
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
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.
<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
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
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
</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
</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.
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.
</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".
</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.
</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
</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
</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.
</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.
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.
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.
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,
</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
</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
</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.
</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
</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.
</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">
</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.
</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
</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
</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
</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
</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.
</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
</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
</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
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
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
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,
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
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>
</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>
</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.
</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
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
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
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
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
<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.
<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
</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
</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
\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
\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
\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
\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
\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
\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
\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
\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
\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
\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
\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
\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
\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
\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
\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
\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
\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
\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
\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
\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
\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
\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
\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
\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
</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
\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
\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
</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
</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
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
</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
</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
\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
\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
</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
\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
\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
\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
(\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
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
</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
</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
\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
\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
\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
\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
</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
\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
\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
\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