Pgpool-II

https://www.pgpool.net/mediawiki/index.php/Main_Page

動作モード設定の集約
Pgpool-II にはさまざまな動作モードがあります。動作モードはバージョンを重ねるたびに増えてきたこともあり、バージョン 4.1 以前では、replication_mode、master_slave_mode、master_slave_sub_mode の 3 つのパラメータで設定していました。バージョン 4.2 では、これらがクラスタリングモードとして 1 つのパラメータ backend_clustering_mode に集約され、設定がシンプルになりました。
Pgpool-II 4.2 で何がどう変わったか? - Qiita 2021

For some reason the status is unused, it should be up or down.
I think you should stop pgpool, remove the file /tmp/pgpool_status, then restart pgpool. The file /tmp/pgpool_status is used by pgpool to record the status of the node. When the file is not there it will create it at startup

https://www.sraoss.jp/pipermail/pgpool-general/2019-March/006516.html

/usr/local/etc/rc.d/pgpool stop

rm /tmp/pgpool_status

/usr/local/etc/rc.d/pgpool start

psql -U postgres -h 127.0.0.1 -p 9999 -c "SHOW POOL_HEALTH_CHECK_STATS;"

pgpool-II環境構築 - Qiita 2018

公式ドキュメントは3.5.4が一覧性がよい

https://www.pgpool.net/docs/pgpool-II-3.5.4/doc/pgpool-ja.html

pcp

pcp.conf でユーザとパスワードを設定
pcpコマンド実行時パスワード入力を省略する場合は .pcppass ファイルが必要

https://www.pgpool.net/docs/pgpool-II-3.5.4/doc/pgpool-ja.html#password_file

旧バージョン

pgpool-II 4.0.5

PostgreSQL11でpgpool-IIを使って負荷分散 - Qiita 2019