Re: See what options a Postgresql binary was compiled with

2021-01-21 Thread Laurenz Albe
On Wed, 2021-01-20 at 17:27 -0700, Keith Christian wrote: > Planning to convert a Postgres 10 instance to systemd init. > I understand it had to be compiled with systemd support to work that way. That is only necessary if you want to start the service with "Type=notify". If you start it using "T

Re: See what options a Postgresql binary was compiled with

2021-01-20 Thread Tom Lane
Keith Christian writes: > Planning to convert a Postgres 10 instance to systemd init. I understand it > had to be compiled with systemd support to work that way. Try "pg_config --configure" and see if --with-systemd is mentioned. regards, tom lane

See what options a Postgresql binary was compiled with

2021-01-20 Thread Keith Christian
Planning to convert a Postgres 10 instance to systemd init. I understand it had to be compiled with systemd support to work that way. Thanks!