From: Tom Lane Date: Fri, 17 Jun 2011 23:13:21 +0000 (-0400) Subject: Don't use "cp -i" in the example WAL archive_command. X-Git-Tag: REL8_3_16~38 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=23843d242f00e6597af91d4f4d08b655b2b362ba;p=postgresql Don't use "cp -i" in the example WAL archive_command. This is a dangerous example to provide because on machines with GNU cp, it will silently do the wrong thing and risk archive corruption. Worse, during the 9.0 cycle somebody "improved" the discussion by removing the warning that used to be there about that, and instead leaving the impression that the command would work as desired on most Unixen. It doesn't. Try to rectify the damage by providing an example that is safe most everywhere, and then noting that you can try cp -i if you want but you'd better test that. In back-patching this to all supported branches, I also added an example command for Windows, which wasn't provided before 9.0. --- diff --git a/doc/src/sgml/backup.sgml b/doc/src/sgml/backup.sgml index 69a4114785..d612c9aac3 100644 --- a/doc/src/sgml/backup.sgml +++ b/doc/src/sgml/backup.sgml @@ -552,7 +552,8 @@ tar -cf backup.tar /usr/local/pgsql/data character in the command. The simplest useful command is something like: -archive_command = 'cp -i %p /mnt/server/archivedir/%f </dev/null' +archive_command = 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f' # Unix +archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows which will copy archivable WAL segments to the directory /mnt/server/archivedir. (This is an example, not a @@ -560,7 +561,7 @@ archive_command = 'cp -i %p /mnt/server/archivedir/%f </dev/null' %p and %f parameters have been replaced, the actual command executed might look like this: -cp -i pg_xlog/00000001000000A900000065 /mnt/server/archivedir/00000001000000A900000065 </dev/null +test ! -f /mnt/server/archivedir/00000001000000A900000065 && cp pg_xlog/00000001000000A900000065 /mnt/server/archivedir/00000001000000A900000065 A similar command will be generated for each new file to be archived. @@ -590,17 +591,19 @@ cp -i pg_xlog/00000001000000A900000065 /mnt/server/archivedir/00000001000000A900 preserve the integrity of your archive in case of administrator error (such as sending the output of two different servers to the same archive directory). + + + It is advisable to test your proposed archive command to ensure that it indeed does not overwrite an existing file, and that it returns - nonzero status in this case. We have found that cp -i does - this correctly on some platforms but not others. If the chosen command - does not itself handle this case correctly, you should add a command - to test for pre-existence of the archive file. For example, something - like: - -archive_command = 'test ! -f .../%f && cp %p .../%f' - - works correctly on most Unix variants. + nonzero status in this case. + The example command above for Unix ensures this by including a separate + test step. On some Unix platforms, cp has + switches such as