pgsql: doc: Add restart on failure to example systemd file - Mailing list pgsql-committers

From Peter Eisentraut
Subject pgsql: doc: Add restart on failure to example systemd file
Date
Msg-id E1vxOjf-002ARM-0c@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
doc: Add restart on failure to example systemd file

The documentation previously had a systemd unit file that would not
attempt to recover from process failures such as OOM's, segfaults,
etc.  This commit adds "Restart=on-failure",` which tells systemd to
attempt to restart the process after failure.  This is the recommended
configuration per the systemd documentation: "Setting this to
on-failure is the recommended choice for long-running services".  Many
PostgreSQL users will simply copy/paste what the PostgreSQL
documentation recommends and will probably do their own research and
change the service file to restart on failure, so might as well set
this as the default in the PostgreSQL documentation.

Author: Andrew Jackson <andrewjackson947@gmail.com>
Discussion:
https://www.postgresql.org/message-id/flat/CAKK5BkFfMpAQnv8CLs%3Di%3DrZwurtCV_gmfRb0uZi-V%2Bd6wcryqg%40mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/b30656ce0071806ce649f2b69a4d06018d5c01a4

Modified Files
--------------
doc/src/sgml/runtime.sgml | 1 +
1 file changed, 1 insertion(+)


pgsql-committers by date:

Previous
From: Álvaro Herrera
Date:
Subject: pgsql: Reduce scope of for-loop-local variables to avoid shadowing
Next
From: Melanie Plageman
Date:
Subject: pgsql: Add read_stream_{pause,resume}()