From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Tanja Savic <tanja(dot)savic(at)crossmasters(dot)com> |
Cc: | "pgsql-general(at)lists(dot)postgresql(dot)org" <pgsql-general(at)lists(dot)postgresql(dot)org> |
Subject: | Re: pg_ctl can't start db server |
Date: | 2020-05-29 15:32:14 |
Message-ID: | 10527.1590766334@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Tanja Savic <tanja(dot)savic(at)crossmasters(dot)com> writes:
> The configuration file path is /etc/postgresql/12/main/ postgresql.conf and it is configured in /var/lib/postgresql/12/main/postmaster.opts:
> "/usr/lib/postgresql/12/bin/postgres "-D" "/var/lib/postgresql/12/main" "-c" "config_file=/etc/postgresql/12/main/postgresql.conf"
> Why does pg_ctl complains about the postgresql.conf path?
I don't remember the exact interaction between -D and an explicit
config_file setting, but evidently it's not working the way you wish.
See
https://www.postgresql.org/docs/current/runtime-config-file-locations.html
which suggests that you should use -D to point at the directory where
postgresql.conf is, and set the data directory with a parameter within
postgresql.conf.
(Note that pg_ctl probably only understands this way, even though
theoretically the postmaster can deal with other approaches to
setting up an external config file.)
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Chris Morris | 2020-05-29 17:42:47 | Audit Role Connections |
Previous Message | Tanja Savic | 2020-05-29 15:19:42 | pg_ctl can't start db server |