Home Explore Blog CI



postgresql

4th chunk of `doc/src/sgml/ref/pg_verifybackup.sgml`
2e67ae13501f7b58c02d444042bad64f51784a6bcdfe1bda000000010000093f

        can be specified multiple times.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-m <replaceable class="parameter">path</replaceable></option></term>
      <term><option>--manifest-path=<replaceable class="parameter">path</replaceable></option></term>
      <listitem>
       <para>
        Use the manifest file at the specified path, rather than one located
        in the root of the backup directory.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-n</option></term>
      <term><option>--no-parse-wal</option></term>
      <listitem>
       <para>
        Don't attempt to parse write-ahead log data that will be needed
        to recover from this backup.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-P</option></term>
      <term><option>--progress</option></term>
      <listitem>
       <para>
        Enable progress reporting. Turning this on will deliver a progress
        report while verifying checksums.
       </para>
       <para>
        This option cannot be used together with the option
        <option>--quiet</option>.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-q</option></term>
      <term><option>--quiet</option></term>
      <listitem>
       <para>
        Don't print anything when a backup is successfully verified.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-s</option></term>
      <term><option>--skip-checksums</option></term>
      <listitem>
       <para>
        Do not verify data file checksums. The presence or absence of
        files and the sizes of those files will still be checked. This is
        much faster, because the files themselves do not need to be read.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><option>-w <replaceable class="parameter">path</replaceable></option></term>
      <term><option>--wal-directory=<replaceable class="parameter">path</replaceable></option></term>
      <listitem>
       <para>
        Try to parse WAL files stored in the specified directory, rather than
        in <literal>pg_wal</literal>. This may be useful if the backup is
        stored in a separate location from the

Title: pg_verifybackup Options: Manifest Path, WAL Parsing, Progress Reporting, Quiet Mode, Checksum Skipping, and WAL Directory
Summary
This section describes several options for pg_verifybackup, including: -m/--manifest-path (specifies the path to the manifest file), -n/--no-parse-wal (disables write-ahead log parsing), -P/--progress (enables progress reporting), -q/--quiet (suppresses output on successful verification), -s/--skip-checksums (skips checksum verification), and -w/--wal-directory (specifies the directory for WAL files).