ページの先頭行へ戻る
Enterprise Postgres 17 リリース情報

2.3.245 レプリケーション接続認証のデフォルト設定の変更

非互換

FUJITSU Enterprise Postgres 10では、pg_hba.confファイルのデフォルト設定を変更することで、pg_hba.confファイルを編集しなくてもローカルホストからのレプリケーションを利用可能にします。

FUJITSU Enterprise Postgres 9.6以前の場合

デフォルトでレプリケーション接続の行をコメントアウトします。

[例]

# Allow replication connections from localhost, by a user with the
# replication privilege.
#local   replication     pguser                                trust
#host    replication     pguser        127.0.0.1/32            trust
#host    replication     pguser        ::1/128                 trust
FUJITSU Enterprise Postgres 10以降の場合

デフォルトでローカルホストからのレプリケーション接続を受け付ける設定にします。

[例]

# Allow replication connections from localhost, by a user with the
# replication privilege.
local   replication     all                                     trust
host    replication     all             127.0.0.1/32            trust
host    replication     all             ::1/128                 trust

対処方法

ローカルホストからのレプリケーション接続を拒否したい場合は、レプリケーション接続の行をコメントアウトしてください。