PGPOOL SHOW

名前

PGPOOL SHOW -- パラメータの設定値を表示する

概要

PGPOOL SHOW configuration_parameter
PGPOOL SHOW configuration_parameter_group
PGPOOL SHOW ALL

説明

PGPOOL SHOW は 実行時 Pgpool-II のパラメータの設定値を表示します。 このコマンドは PostgreSQL の SHOW コマンドと似ていますが、 PostgreSQLSHOW コマンドと区別するために、 PGPOOL というキーワードが追加されました。

パラメータ

configuration_parameter

Pgpool-II の設定パラメータ名です。指定可能なパラメータ名は 第5章 をご参照ください。

configuration_parameter_group

Pgpool-II の設定パラメータのグループ名です。 現在、指定可能なパラメータグループは以下の 3つです。

backend

すべてのバックエンドグループのパラメータの設定値。

other_pgpool

すべての watchdog ノードのパラメータの設定値。

heartbeat

すべての watchdog heartbeat ノードのパラメータの設定値。

health_check

すべてのhealth checkパラメータの設定値。

ALL

すべてのパラメータの設定値と説明を表示します。

パラメータ port の現在の設定値を表示:

PGPOOL SHOW port;
port
------
9999
(1 row)

パラメータ black_function_list の現在の設定値を表示:

PGPOOL SHOW black_function_list;
 black_function_list
 ---------------------
 nextval,setval
 (1 row)

バックエンドグループのすべてのパラメータの設定値を表示する:

  PGPOOL SHOW backend;
 item                     |          value          |              description
 -------------------------+-------------------------+-----------------------------------------------------------
 backend_hostname0        | 127.0.0.1               | hostname or IP address of PostgreSQL backend.
 backend_port0            | 5434                    | port number of PostgreSQL backend.
 backend_weight0          | 0                       | load balance weight of backend.
 backend_data_directory0  | /var/lib/pgsql/data     | data directory of the backend.
 backend_flag0            | ALLOW_TO_FAILOVER       | Controls various backend behavior.
 backend_hostname1        | 127.0.0.1               | hostname or IP address of PostgreSQL backend.
 backend_port1            | 5432                    | port number of PostgreSQL backend.
 backend_weight1          | 1                       | load balance weight of backend.
 backend_data_directory1  | /home/work/installed/pg | data directory of the backend.
 backend_flag1            | ALLOW_TO_FAILOVER       | Controls various backend behavior.
 (10 rows)

全設定を表示:

 PGPOOL SHOW ALL;
 item                     |          value          |              description
 -------------------------+-------------------------+-----------------------------------------------------------
 backend_hostname0        | 127.0.0.1               | hostname or IP address of PostgreSQL backend.
 backend_port0            | 5434                    | port number of PostgreSQL backend.
 backend_weight0          | 0                       | load balance weight of backend.
 backend_data_directory0  | /var/lib/pgsql/data     | data directory of the backend.
 backend_flag0            | ALLOW_TO_FAILOVER       | Controls various backend behavior.
 backend_hostname1        | 127.0.0.1               | hostname or IP address of PostgreSQL backend.
 backend_port1            | 5432                    | port number of PostgreSQL backend.
 backend_weight1          | 1                       | load balance weight of backend.
 backend_data_directory1  | /home/work/installed/pg | data directory of the backend.
 backend_flag1            | ALLOW_TO_FAILOVER       | Controls various backend behavior.
 other_pgpool_hostname0   | localhost               | Hostname of other pgpool node for watchdog connection.
 .
 .
 .
 ssl                      | off                     | Enables SSL support for frontend and backend connections
 (138 rows)

関連項目

PGPOOL SET