关于此任务

在部署集群之前,将 Postgres 配置为允许远程连接至关重要。如果您在安装集群之前未执行这些步骤,安装将失败。

步骤

  1. 打开 /var/lib/pgsql/9.6/data/pg_hba.conf 并更新为以下内容

    1. # "local" is for Unix domain socket connections only
    2. local all all trust
    3. # IPv4 local connections:
    4. host all all 0.0.0.0/0 trust
    5. # IPv6 local connections:
    6. host all all ::/0 trust
  2. 打开 /var/lib//pgsql/9.6/data/postgresql.conf 并更新为以下内容:

    1. listen_addresses = '*'
  3. 重新启动Postgres:

    1. systemctl stop postgresql-9.6.service
    2. systemctl start postgresql-9.6.service