PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Postgres trova i file di configurazione in Linux

Finalmente ho trovato la soluzione globale per questo.

Per prima cosa dovresti seguire questi passaggi:

  1. su - postgres
  2. psql
  3. Per il file di configurazione di Postgres :

    SHOW config_file;

l'output dovrebbe essere questo:

postgres=# SHOW config_file;
                   config_file
    ------------------------------------------
     /etc/postgresql/9.6/main/postgresql.conf
    (1 row)

e per hba_file usa:

SHOW hba_file;