diff options
author | Bruce Momjian <bruce@momjian.us> | 2020-08-31 17:36:22 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2020-08-31 17:36:22 -0400 |
commit | 9774d9c777ba56b8a46357303aeb8e7d94420011 (patch) | |
tree | cb32aa572d81bf8c0f21485b512020d72cf9169a /doc/src | |
parent | 2bf1bec585972e16daa9104db08531d3b32ada54 (diff) | |
download | postgresql-9774d9c777ba56b8a46357303aeb8e7d94420011.tar.gz postgresql-9774d9c777ba56b8a46357303aeb8e7d94420011.zip |
pg_upgrade doc: mention saving postgresql.conf.auto files
Also mention files included by postgresql.conf.
Reported-by: Álvaro Herrera
Discussion: https://postgr.es/m/08AD4526-75AB-457B-B2DD-099663F28040@yesql.se
Backpatch-through: 9.5
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/pgupgrade.sgml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/pgupgrade.sgml b/doc/src/sgml/ref/pgupgrade.sgml index f4a64615f36..63cb5cbc67c 100644 --- a/doc/src/sgml/ref/pgupgrade.sgml +++ b/doc/src/sgml/ref/pgupgrade.sgml @@ -515,9 +515,10 @@ pg_upgrade.exe <para> Save any configuration files from the old standbys' configuration - directories you need to keep, e.g. <filename>postgresql.conf</filename>, - <literal>pg_hba.conf</literal>, because these will be overwritten or - removed in the next step. + directories you need to keep, e.g. <filename>postgresql.conf</filename> + (and any files included by it), <filename>postgresql.auto.conf</filename>, + <literal>pg_hba.conf</literal>, because these will be overwritten + or removed in the next step. </para> </step> @@ -605,7 +606,8 @@ rsync --archive --delete --hard-links --size-only --no-inc-recursive /vol1/pg_tb <para> If you modified <filename>pg_hba.conf</filename>, restore its original settings. It might also be necessary to adjust other configuration files in the new - cluster to match the old cluster, e.g. <filename>postgresql.conf</filename>. + cluster to match the old cluster, e.g., <filename>postgresql.conf</filename> + (and any files included by it), <filename>postgresql.auto.conf</filename>. </para> </step> |