3 .\" Author: The PostgreSQL Global Development Group
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
6 .\" Manual: PostgreSQL 18.0 Documentation
7 .\" Source: PostgreSQL 18.0
10 .TH "PG_UPGRADE" "1" "2025" "PostgreSQL 18.0" "PostgreSQL 18.0 Documentation"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
25 .\" disable justification (adjust text to left margin only)
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
31 pg_upgrade \- upgrade a PostgreSQL server instance
33 .HP \w'\fBpg_upgrade\fR\ 'u
34 \fBpg_upgrade\fR \fB\-b\fR \fIoldbindir\fR [\fB\-B\fR\ \fInewbindir\fR] \fB\-d\fR \fIoldconfigdir\fR \fB\-D\fR \fInewconfigdir\fR [\fIoption\fR...]
39 pg_migrator) allows data stored in
41 data files to be upgraded to a later
43 major version without the data dump/restore typically required for major version upgrades, e\&.g\&., from 12\&.14 to 13\&.10 or from 14\&.9 to 15\&.5\&. It is not required for minor version upgrades, e\&.g\&., from 12\&.7 to 12\&.8 or from 14\&.1 to 14\&.5\&.
45 Major PostgreSQL releases regularly add new features that often change the layout of the system tables, but the internal data storage format rarely changes\&.
47 uses this fact to perform rapid upgrades by creating new system tables and simply reusing the old user data files\&. If a future major release ever changes the data storage format in a way that makes the old data format unreadable,
49 will not be usable for such upgrades\&. (The community will attempt to avoid such situations\&.)
52 does its best to make sure the old and new clusters are binary\-compatible, e\&.g\&., by checking for compatible compile\-time settings, including 32/64\-bit binaries\&. It is important that any external modules are also binary compatible, though this cannot be checked by
56 supports upgrades from 9\&.2\&.X and later to the current major release of
57 PostgreSQL, including snapshot and beta releases\&.
63 .nr an-no-space-flag 1
71 Upgrading a cluster causes the destination to execute arbitrary code of the source superusers\*(Aq choice\&. Ensure that the source superusers are trusted before upgrading\&.
77 accepts the following command\-line arguments:
79 \fB\-b\fR \fIbindir\fR
81 \fB\-\-old\-bindir=\fR\fIbindir\fR
83 the old PostgreSQL executable directory; environment variable
87 \fB\-B\fR \fIbindir\fR
89 \fB\-\-new\-bindir=\fR\fIbindir\fR
91 the new PostgreSQL executable directory; default is the directory where
93 resides; environment variable
101 check clusters only, don\*(Aqt change any data
104 \fB\-d\fR \fIconfigdir\fR
106 \fB\-\-old\-datadir=\fR\fIconfigdir\fR
108 the old database cluster configuration directory; environment variable
112 \fB\-D\fR \fIconfigdir\fR
114 \fB\-\-new\-datadir=\fR\fIconfigdir\fR
116 the new database cluster configuration directory; environment variable
120 \fB\-j \fR\fB\fInjobs\fR\fR
122 \fB\-\-jobs=\fR\fB\fInjobs\fR\fR
124 number of simultaneous connections and processes/threads to use
131 use hard links instead of copying files to the new cluster
140 will wait for all files of the upgraded cluster to be written safely to disk\&. This option causes
142 to return without waiting, which is faster, but means that a subsequent operating system crash can leave the data directory corrupt\&. Generally, this option is useful for testing but should not be used on a production installation\&.
145 \fB\-o\fR \fIoptions\fR
147 \fB\-\-old\-options\fR \fIoptions\fR
149 options to be passed directly to the old
151 command; multiple option invocations are appended
154 \fB\-O\fR \fIoptions\fR
156 \fB\-\-new\-options\fR \fIoptions\fR
158 options to be passed directly to the new
160 command; multiple option invocations are appended
165 \fB\-\-old\-port=\fR\fIport\fR
167 the old cluster port number; environment variable
173 \fB\-\-new\-port=\fR\fIport\fR
175 the new cluster port number; environment variable
183 retain SQL and log files even after successful completion
188 \fB\-\-socketdir=\fR\fIdir\fR
190 directory to use for postmaster sockets during upgrade; default is current working directory; environment variable
194 \fB\-U\fR \fIusername\fR
196 \fB\-\-username=\fR\fIusername\fR
198 cluster\*(Aqs install user name; environment variable
206 enable verbose internal logging
213 display version information, then exit
218 Use efficient file cloning (also known as
220 on some systems) instead of copying files to the new cluster\&. This can result in near\-instantaneous copying of the data files, giving the speed advantages of
221 \fB\-k\fR/\fB\-\-link\fR
222 while leaving the old cluster untouched\&.
224 File cloning is only supported on some operating systems and file systems\&. If it is selected but not supported, the
226 run will error\&. At present, it is supported on Linux (kernel 4\&.5 or later) with Btrfs and XFS (on file systems created with reflink support), and on macOS with APFS\&.
231 Copy files to the new cluster\&. This is the default\&. (See also
234 \fB\-\-copy\-file\-range\fR, and
238 \fB\-\-copy\-file\-range\fR
241 \fBcopy_file_range\fR
242 system call for efficient copying\&. On some file systems this gives results similar to
243 \fB\-\-clone\fR, sharing physical disk blocks, while on others it may still copy blocks, but do so via an optimized path\&. At present, it is supported on Linux and FreeBSD\&.
246 \fB\-\-no\-statistics\fR
248 Do not restore statistics from the old cluster into the new cluster\&.
251 \fB\-\-set\-char\-signedness=\fR\fIoption\fR
253 Manually set the default char signedness of new clusters\&. Possible values are
258 In the C language, the default signedness of the
260 type (when not explicitly specified) varies across platforms\&. For example,
270 18, database clusters maintain their own default char signedness setting, which can be used to ensure consistent behavior across platforms with different default char signedness\&. By default,
272 preserves the char signedness setting when upgrading from an existing cluster\&. However, when upgrading from
276 adopts the char signedness of the platform on which it was built\&.
278 This option allows you to explicitly set the default char signedness for the new cluster, overriding any inherited values\&. There are two specific scenarios where this option is relevant:
288 If you are planning to migrate to a different platform after the upgrade, you should not use this option\&. The default behavior is right in this case\&. Instead, perform the upgrade on the original platform without this flag, and then migrate the cluster afterward\&. This is the recommended and safest approach\&.
299 If you have already migrated the cluster to a platform with different char signedness (for example, from an x86\-based system to an ARM\-based system), you should use this option to specify the signedness matching the original platform\*(Aqs default char signedness\&. Additionally, it\*(Aqs essential not to modify any data files between migrating data files and running
302 should be the first operation that starts the cluster on the new platform\&.
309 Move the data directories from the old cluster to the new cluster\&. Then, replace the catalog files with those generated for the new cluster\&. This mode can outperform
313 \fB\-\-copy\-file\-range\fR, especially on clusters with many relations\&.
315 However, this mode creates many garbage files in the old cluster, which can prolong the file synchronization step if
316 \fB\-\-sync\-method=syncfs\fR
317 is used\&. Therefore, it is recommended to use
318 \fB\-\-sync\-method=fsync\fR
322 Additionally, once the file transfer step begins, the old cluster will be destructively modified and therefore will no longer be safe to start\&. See
327 \fB\-\-sync\-method=\fR\fImethod\fR
330 fsync, which is the default,
332 will recursively open and synchronize all files in the upgraded cluster\*(Aqs data directory\&. The search for files will follow symbolic links for the WAL directory and each configured tablespace\&.
336 may be used instead to ask the operating system to synchronize the whole file systems that contain the upgraded cluster\*(Aqs data directory, its WAL files, and each tablespace\&. See
337 recovery_init_sync_method
338 for information about the caveats to be aware of when using
341 This option has no effect when
354 These are the steps to perform an upgrade with
361 .nr an-no-space-flag 1
370 logical replication clusters
371 are not covered here; refer to
385 Optionally move the old cluster: If you are using a version\-specific installation directory, e\&.g\&.,
386 /opt/PostgreSQL/18, you do not need to move the old cluster\&. The graphical installers all use version\-specific installation directories\&.
388 If your installation directory is not version\-specific, e\&.g\&.,
389 /usr/local/pgsql, it is necessary to move the current PostgreSQL install directory so it does not interfere with the new
391 installation\&. Once the current
393 server is shut down, it is safe to rename the PostgreSQL installation directory; assuming the old directory is
394 /usr/local/pgsql, you can do:
400 mv /usr/local/pgsql /usr/local/pgsql\&.old
406 to rename the directory\&.
417 For source installs, build the new version: Build the new PostgreSQL source with
419 flags that are compatible with the old cluster\&.
423 to make sure all settings are compatible before starting the upgrade\&.
434 Install the new PostgreSQL binaries: Install the new server\*(Aqs binaries and support files\&.
436 is included in a default installation\&.
438 For source installs, if you wish to install the new server in a custom location, use the
446 make prefix=/usr/local/pgsql\&.new install
461 Initialize the new PostgreSQL cluster: Initialize the new cluster using
462 \fBinitdb\fR\&. Again, use compatible
464 flags that match the old cluster\&. Many prebuilt installers do this step automatically\&. There is no need to start the new cluster\&.
475 Install extension shared object files: Many extensions and custom modules, whether from
477 or another source, use shared object files (or DLLs), e\&.g\&.,
478 pgcrypto\&.so\&. If the old cluster used these, shared object files matching the new server binary must be installed in the new cluster, usually via operating system commands\&. Do not load the schema definitions, e\&.g\&.,
479 \fBCREATE EXTENSION pgcrypto\fR, because these will be duplicated from the old cluster\&. If extension updates are available,
481 will report this and create a script that can be run later to update them\&.
492 Copy custom full\-text search files: Copy any custom full text search files (dictionary, synonym, thesaurus, stop words) from the old to the new cluster\&.
503 Adjust authentication: \fBpg_upgrade\fR
504 will connect to the old and new servers several times, so you might want to set authentication to
522 Stop both servers: Make sure both database servers are stopped using, on Unix, e\&.g\&.:
528 pg_ctl \-D /opt/PostgreSQL/12 stop
529 pg_ctl \-D /opt/PostgreSQL/18 stop
535 or on Windows, using the proper service names:
541 NET STOP postgresql\-12
542 NET STOP postgresql\-18
548 Streaming replication and log\-shipping standby servers must be running during this shutdown so they receive all changes\&.
559 Prepare for standby server upgrades: If you are upgrading standby servers using methods outlined in section
560 Step 11, verify that the old standby servers are caught up by running
562 against the old primary and standby clusters\&. Verify that the
563 \(lqLatest checkpoint location\(rq
564 values match in all clusters\&. Also, make sure
570 file on the new primary cluster\&.
581 Run pg_upgrade: Always run the
583 binary of the new server, not the old one\&.
585 requires the specification of the old and new cluster\*(Aqs data and executable (bin) directories\&. You can also specify user and port values, and whether you want the data files linked, cloned, or swapped instead of the default copy behavior\&.
587 If you use link mode, the upgrade will be much faster (no file copying) and use less disk space, but you will not be able to access your old cluster once you start the new cluster after the upgrade\&. Link mode also requires that the old and new cluster data directories be in the same file system\&. (Tablespaces and
589 can be on different file systems\&.) Clone mode provides the same speed and disk space advantages but does not cause the old cluster to be unusable once the new cluster is started\&. Clone mode also requires that the old and new data directories be in the same file system\&. This mode is only available on certain operating systems and file systems\&. Swap mode may be the fastest if there are many relations, but you will not be able to access your old cluster once the file transfer step begins\&. Swap mode also requires that the old and new cluster data directories be in the same file system\&.
593 to 2 or higher allows pg_upgrade to process multiple databases and tablespaces in parallel\&. A good starting point is the number of CPU cores on the machine\&. This option can substantially reduce the upgrade time for multi\-database and multi\-tablespace servers\&.
595 For Windows users, you must be logged into an administrative account, and then run
597 with quoted directories, e\&.g\&.:
604 \-\-old\-datadir "C:/Program Files/PostgreSQL/12/data"
605 \-\-new\-datadir "C:/Program Files/PostgreSQL/18/data"
606 \-\-old\-bindir "C:/Program Files/PostgreSQL/12/bin"
607 \-\-new\-bindir "C:/Program Files/PostgreSQL/18/bin"
615 will verify the two clusters are compatible and then do the upgrade\&. You can use
616 \fBpg_upgrade \-\-check\fR
617 to perform only the checks, even if the old server is still running\&.
618 \fBpg_upgrade \-\-check\fR
619 will also outline any manual adjustments you will need to make after the upgrade\&. If you are going to be using link, clone, copy\-file\-range, or swap mode, you should use the option
622 \fB\-\-copy\-file\-range\fR, or
626 to enable mode\-specific checks\&.
628 requires write permission in the current directory\&.
630 Obviously, no one should be accessing the clusters during the upgrade\&.
632 defaults to running servers on port 50432 to avoid unintended client connections\&. You can use the same port number for both clusters when doing an upgrade because the old and new clusters will not be running at the same time\&. However, when checking an old running server, the old and new port numbers must be different\&.
634 If an error occurs while restoring the database schema,
636 will exit and you will have to revert to the old cluster as outlined in
640 again, you will need to modify the old cluster so the pg_upgrade schema restore succeeds\&. If the problem is a
642 module, you might need to uninstall the
644 module from the old cluster and install it in the new cluster after the upgrade, assuming the module is not being used to store user data\&.
655 Upgrade streaming replication and log\-shipping standby servers: If you used link mode and have Streaming Replication (see
656 Section\ \&26.2.5) or Log\-Shipping (see
657 Section\ \&26.2) standby servers, you can follow these steps to quickly upgrade them\&. You will not be running
659 on the standby servers, but rather
661 on the primary\&. Do not start any servers yet\&.
665 use link mode, do not have or do not want to use
666 rsync, or want an easier solution, skip the instructions in this section and simply recreate the standby servers once
668 completes and the new primary is running\&.
678 Install the new PostgreSQL binaries on standby servers: Make sure the new binaries and support files are installed on all standby servers\&.
689 Make sure the new standby data directories do \fInot\fR exist: Make sure the new standby data directories do
691 exist or are empty\&. If
693 was run, delete the standby servers\*(Aq new data directories\&.
704 Install extension shared object files: Install the same extension shared object files on the new standbys that you installed in the new primary cluster\&.
715 Stop standby servers: If the standby servers are still running, stop them now using the above instructions\&.
726 Save configuration files: Save any configuration files from the old standbys\*(Aq configuration directories you need to keep, e\&.g\&.,
728 (and any files included by it),
729 postgresql\&.auto\&.conf,
730 pg_hba\&.conf, because these will be overwritten or removed in the next step\&.
741 Run rsync: When using link mode, standby servers can be quickly upgraded using
742 rsync\&. To accomplish this, from a directory on the primary server that is above the old and new database cluster directories, run this on the
744 for each standby server:
750 rsync \-\-archive \-\-delete \-\-hard\-links \-\-size\-only \-\-no\-inc\-recursive old_cluster new_cluster remote_dir
760 are relative to the current directory on the primary, and
764 the old and new cluster directories on the standby\&. The directory structure under the specified directories on the primary and standbys must match\&. Consult the
766 manual page for details on specifying the remote directory, e\&.g\&.,
772 rsync \-\-archive \-\-delete \-\-hard\-links \-\-size\-only \-\-no\-inc\-recursive /opt/PostgreSQL/12 \e
773 /opt/PostgreSQL/18 standby\&.example\&.com:/opt/PostgreSQL
779 You can verify what the command will do using
784 must be run on the primary for at least one standby, it is possible to run
786 on an upgraded standby to upgrade other standbys, as long as the upgraded standby has not been started\&.
788 What this does is to record the links created by
789 pg_upgrade\*(Aqs link mode that connect files in the old and new clusters on the primary server\&. It then finds matching files in the standby\*(Aqs old cluster and creates links for them in the standby\*(Aqs new cluster\&. Files that were not linked on the primary are copied from the primary to the standby\&. (They are usually small\&.) This provides rapid standby upgrades\&. Unfortunately,
791 needlessly copies files associated with temporary and unlogged tables because these files don\*(Aqt normally exist on standby servers\&.
793 If you have tablespaces, you will need to run a similar
795 command for each tablespace directory, e\&.g\&.:
801 rsync \-\-archive \-\-delete \-\-hard\-links \-\-size\-only \-\-no\-inc\-recursive /vol1/pg_tblsp/PG_12_201909212 \e
802 /vol1/pg_tblsp/PG_18_202307071 standby\&.example\&.com:/vol1/pg_tblsp
808 If you have relocated
810 outside the data directories,
812 must be run on those directories too\&.
823 Configure streaming replication and log\-shipping standby servers: Configure the servers for log shipping\&. (You do not need to run
824 \fBpg_backup_start()\fR
826 \fBpg_backup_stop()\fR
827 or take a file system backup as the standbys are still synchronized with the primary\&.) If the old primary is prior to version 17\&.0, then no slots on the primary are copied to the new standby, so all the slots on the old standby must be recreated manually\&. If the old primary is version 17\&.0 or later, then only logical slots on the primary are copied to the new standby, but other slots on the old standby are not copied, so must be recreated manually\&.
839 Restore pg_hba\&.conf: If you modified
840 pg_hba\&.conf, 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\&.,
842 (and any files included by it),
843 postgresql\&.auto\&.conf\&.
854 Start the new server: The new server can now be safely started, and then any
855 rsync\*(Aqed standby servers\&.
866 Post\-upgrade processing: If any post\-upgrade processing is required, pg_upgrade will issue warnings as it completes\&. It will also generate script files that must be run by the administrator\&. The script files will connect to each database that needs post\-upgrade processing\&. Each script should be run using:
872 psql \-\-username=postgres \-\-file=script\&.sql postgres
878 The scripts can be run in any order and can be deleted once they have been run\&.
884 .nr an-no-space-flag 1
891 In general it is unsafe to access tables referenced in rebuild scripts until the rebuild scripts have run to completion; doing so could yield incorrect results or poor performance\&. Tables not referenced in rebuild scripts can be accessed immediately\&.
904 Statistics: Unless the
905 \fB\-\-no\-statistics\fR
908 will transfer most optimizer statistics from the old cluster to the new cluster\&. However, some statistics may not be transferred, such as those created explicitly with
909 CREATE STATISTICS (\fBCREATE_STATISTICS\fR(7))
910 or custom statistics added by an extension\&.
912 Because not all statistics are transferred by
913 \fBpg_upgrade\fR, you will be instructed to run commands to regenerate that information at the end of the upgrade\&. You might need to set connection parameters to match your new cluster\&.
916 \fBvacuumdb \-\-all \-\-analyze\-in\-stages \-\-missing\-stats\-only\fR
917 to quickly generate minimal optimizer statistics for relations without any\&. Then, use
918 \fBvacuumdb \-\-all \-\-analyze\-only\fR
919 to ensure all relations have updated cumulative statistics for triggering vacuum and analyze\&. For both commands, the use of
921 can speed it up\&. If
922 \fIvacuum_cost_delay\fR
923 is set to a non\-zero value, this can be overridden to speed up statistics generation using
924 \fBPGOPTIONS\fR, e\&.g\&.,
925 PGOPTIONS=\*(Aq\-c vacuum_cost_delay=0\*(Aq vacuumdb \&.\&.\&.\&.
936 Delete old cluster: Once you are satisfied with the upgrade, you can delete the old cluster\*(Aqs data directories by running the script mentioned when
938 completes\&. (Automatic deletion is not possible if you have user\-defined tablespaces inside the old data directory\&.) You can also delete the old installation directories (e\&.g\&.,
951 Reverting to old cluster: If, after running
952 \fBpg_upgrade\fR, you wish to revert to the old cluster, there are several options:
964 option was used, the old cluster was unmodified; it can be restarted\&.
979 was used, the old cluster was unmodified; it can be restarted\&.
992 option was used, the data files might be shared between the old and new cluster:
1004 aborted before linking started, the old cluster was unmodified; it can be restarted\&.
1009 \h'-04'\(bu\h'+03'\c
1017 start the new cluster, the old cluster was unmodified except that, when linking started, a
1019 suffix was appended to
1020 $PGDATA/global/pg_control\&. To reuse the old cluster, remove the
1023 $PGDATA/global/pg_control; you can then restart the old cluster\&.
1028 \h'-04'\(bu\h'+03'\c
1034 If you did start the new cluster, it has written to shared files and it is unsafe to use the old cluster\&. The old cluster will need to be restored from backup in this case\&.
1040 \h'-04'\(bu\h'+03'\c
1048 option was used, the old cluster might be destructively modified:
1052 \h'-04'\(bu\h'+03'\c
1060 aborts before reporting that the old cluster is no longer safe to start, the old cluster was unmodified; it can be restarted\&.
1065 \h'-04'\(bu\h'+03'\c
1073 has reported that the old cluster is no longer safe to start, the old cluster was destructively modified\&. The old cluster will need to be restored from backup in this case\&.
1080 Some environment variables can be used to provide defaults for command\-line options:
1084 The old PostgreSQL executable directory; option
1085 \fB\-b\fR/\fB\-\-old\-bindir\fR\&.
1090 The new PostgreSQL executable directory; option
1091 \fB\-B\fR/\fB\-\-new\-bindir\fR\&.
1096 The old database cluster configuration directory; option
1097 \fB\-d\fR/\fB\-\-old\-datadir\fR\&.
1102 The new database cluster configuration directory; option
1103 \fB\-D\fR/\fB\-\-new\-datadir\fR\&.
1108 The old cluster port number; option
1109 \fB\-p\fR/\fB\-\-old\-port\fR\&.
1114 The new cluster port number; option
1115 \fB\-P\fR/\fB\-\-new\-port\fR\&.
1120 Directory to use for postmaster sockets during upgrade; option
1121 \fB\-s\fR/\fB\-\-socketdir\fR\&.
1126 Cluster\*(Aqs install user name; option
1127 \fB\-U\fR/\fB\-\-username\fR\&.
1132 creates various working files, such as schema dumps, stored within
1133 pg_upgrade_output\&.d
1134 in the directory of the new cluster\&. Each run creates a new subdirectory named with a timestamp formatted as per ISO 8601 (%Y%m%dT%H%M%S), where all its generated files are stored\&.
1135 pg_upgrade_output\&.d
1136 and its contained files will be removed automatically if
1138 completes successfully; but in the event of trouble, the files there may provide useful debugging information\&.
1141 launches short\-lived postmasters in the old and new data directories\&. Temporary Unix socket files for communication with these postmasters are, by default, made in the current working directory\&. In some situations the path name for the current directory might be too long to be a valid socket name\&. In that case you can use the
1143 option to put the socket files in some directory with a shorter path name\&. For security, be sure that that directory is not readable or writable by any other users\&. (This is not supported on Windows\&.)
1145 All failure, rebuild, and reindex cases will be reported by
1147 if they affect your installation; post\-upgrade scripts to rebuild tables and indexes will be generated automatically\&. If you are trying to automate the upgrade of many clusters, you should find that clusters with identical database schemas require the same post\-upgrade steps for all cluster upgrades; this is because the post\-upgrade steps are based on the database schemas, and not user data\&.
1149 For deployment testing, create a schema\-only copy of the old cluster, insert dummy data, and upgrade that\&.
1152 does not support upgrading of databases containing table columns using these
1154 OID\-referencing system data types:
1184 If you want to use link mode and you do not want your old cluster to be modified when the new cluster is started, consider using the clone mode\&. If that is not available, make a copy of the old cluster and upgrade that in link mode\&. To make a valid copy of the old cluster, use
1186 to create a dirty copy of the old cluster while the server is running, then shut down the old server and run
1187 \fBrsync \-\-checksum\fR
1188 again to update the copy with any changes to make it consistent\&. (\fB\-\-checksum\fR
1189 is necessary because
1191 only has file modification\-time granularity of one second\&.) You might want to exclude some files, e\&.g\&.,
1192 postmaster\&.pid, as documented in
1193 Section\ \&25.3.4\&. If your file system supports file system snapshots or copy\-on\-write file copies, you can use that to make a backup of the old cluster and tablespaces, though the snapshot and copies must be created simultaneously or while the database server is down\&.
1195 \fBinitdb\fR(1), \fBpg_ctl\fR(1), \fBpg_dump\fR(1), \fBpostgres\fR(1)