diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2022-10-12 10:51:11 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2022-10-12 10:51:36 -0400 |
commit | de924f4bb3eb26d24c32b344ebf047f03dd1d94d (patch) | |
tree | 1f919e207877742ee83172a0df69970bdf484249 | |
parent | 7442701374a448663061c493b40926c4e8d68838 (diff) | |
download | postgresql-de924f4bb3eb26d24c32b344ebf047f03dd1d94d.tar.gz postgresql-de924f4bb3eb26d24c32b344ebf047f03dd1d94d.zip |
Doc: improve recommended systemd unit file.
Add
After=network-online.target
Wants=network-online.target
to the suggested unit file for starting a Postgres server.
This delays startup until the network interfaces have been
configured; without that, any attempt to bind to a specific
IP address will fail.
If listen_addresses is set to "localhost" or "*", it might be
possible to get away with the less restrictive "network.target",
but I don't think we need to get into such detail here.
Per suggestion from Pablo Federico.
Discussion: https://postgr.es/m/166552157407.591805.10036014441784710940@wrigleys.postgresql.org
-rw-r--r-- | doc/src/sgml/runtime.sgml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index 0826fe454c1..fc6e48427ed 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -480,6 +480,8 @@ fi [Unit] Description=PostgreSQL database server Documentation=man:postgres(1) +After=network-online.target +Wants=network-online.target [Service] Type=notify |