mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
Editorial corrections.
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
<!--
|
<!--
|
||||||
$Header: /cvsroot/pgsql/doc/src/sgml/ref/pg_controldata.sgml,v 1.3 2002/08/17 02:43:08 momjian Exp $
|
$Header: /cvsroot/pgsql/doc/src/sgml/ref/pg_controldata.sgml,v 1.4 2002/08/17 05:07:18 tgl Exp $
|
||||||
PostgreSQL documentation
|
PostgreSQL documentation
|
||||||
-->
|
-->
|
||||||
|
|
||||||
@ -26,7 +26,7 @@ PostgreSQL documentation
|
|||||||
<title>Description</title>
|
<title>Description</title>
|
||||||
<para>
|
<para>
|
||||||
<command>pg_controldata</command> returns information initialized during
|
<command>pg_controldata</command> returns information initialized during
|
||||||
<application>initdb</>. such as the catalog version and server encoding.
|
<application>initdb</>, such as the catalog version and server locale.
|
||||||
It also shows information about write-ahead logging and checkpoint
|
It also shows information about write-ahead logging and checkpoint
|
||||||
processing. This information is server-wide, and not specific to any one
|
processing. This information is server-wide, and not specific to any one
|
||||||
database.
|
database.
|
||||||
@ -49,7 +49,7 @@ PostgreSQL documentation
|
|||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Default data direction location
|
Default data directory location
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<!--
|
<!--
|
||||||
$Header: /cvsroot/pgsql/doc/src/sgml/ref/pg_resetxlog.sgml,v 1.2 2002/08/17 04:09:18 tgl Exp $
|
$Header: /cvsroot/pgsql/doc/src/sgml/ref/pg_resetxlog.sgml,v 1.3 2002/08/17 05:07:18 tgl Exp $
|
||||||
PostgreSQL documentation
|
PostgreSQL documentation
|
||||||
-->
|
-->
|
||||||
|
|
||||||
@ -12,13 +12,17 @@ PostgreSQL documentation
|
|||||||
|
|
||||||
<refnamediv>
|
<refnamediv>
|
||||||
<refname>pg_resetxlog</refname>
|
<refname>pg_resetxlog</refname>
|
||||||
<refpurpose>reset write-ahead log file and optionally the pg_controldata file</refpurpose>
|
<refpurpose>reset write-ahead log file and optionally the pg_control file</refpurpose>
|
||||||
</refnamediv>
|
</refnamediv>
|
||||||
|
|
||||||
<refsynopsisdiv>
|
<refsynopsisdiv>
|
||||||
<cmdsynopsis>
|
<cmdsynopsis>
|
||||||
<command>pg_resetxlog</command>
|
<command>pg_resetxlog</command>
|
||||||
<arg><replaceable class="parameter">datadir</replaceable></arg>
|
<arg> -f </arg>
|
||||||
|
<arg> -n </arg>
|
||||||
|
<arg> -x <replaceable class="parameter">xid</replaceable> </arg>
|
||||||
|
<arg> -l <replaceable class="parameter">fileid</replaceable> <replaceable class="parameter">seg</replaceable> </arg>
|
||||||
|
<arg choice="plain"><replaceable>datadir</replaceable></arg>
|
||||||
</cmdsynopsis>
|
</cmdsynopsis>
|
||||||
</refsynopsisdiv>
|
</refsynopsisdiv>
|
||||||
|
|
||||||
@ -26,37 +30,51 @@ PostgreSQL documentation
|
|||||||
<title>Description</title>
|
<title>Description</title>
|
||||||
<para>
|
<para>
|
||||||
<command>pg_resetxlog</command> clears the write-ahead log file and
|
<command>pg_resetxlog</command> clears the write-ahead log file and
|
||||||
optionally the <filename>pg_controldata</> file. This is
|
optionally the <filename>pg_control</> file. This function is sometimes
|
||||||
used so the server can be started after these files have become corrupted.
|
needed if these files have become corrupted.
|
||||||
(In every reported case, such file corruption has been caused
|
It should be used only as a last resort,
|
||||||
by faulty hardware.) It is to be used only as a last resort,
|
|
||||||
when the server will not start due to such corruption.
|
when the server will not start due to such corruption.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
After running this command, the server may contain index corruption and
|
After running this command, it should be possible to start the server,
|
||||||
partially-committed transactions. You should immediately dump your data
|
but bear in mind that the database may contain inconsistent data due to
|
||||||
and reload. After reload, check for partially committed transactions
|
partially-committed transactions. You should immediately dump your data,
|
||||||
that may have been open at the time of the server crash.
|
run <application>initdb</>, and reload. After reload, check for
|
||||||
|
inconsistencies and repair as needed.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
<command>pg_resetxlog</command> can also fix a corrupted
|
This utility can only be run by the user who installed the server, because
|
||||||
<filename>pg_controldata</> file using the <literal>-f</>
|
|
||||||
flag. Use this option when <command>pg_resetxlog</> reports it can't
|
|
||||||
reconstruct valid data for pg_control.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
<command>pg_resetxlog</command> has a few more options for
|
|
||||||
special purposes. Run the command with no arguments to see them.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
This utility can only be run by the user who installed the server because
|
|
||||||
it requires read/write access to the <literal>datadir</>.
|
it requires read/write access to the <literal>datadir</>.
|
||||||
For safety reasons, you must specify the data directory on the command line.
|
For safety reasons, you must specify the data directory on the command line.
|
||||||
It does not use the environment variable <envar>PGDATA</>.
|
<command>pg_resetxlog</command> does not use the environment variable
|
||||||
|
<envar>PGDATA</>.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
If <command>pg_resetxlog</command> complains that it cannot determine
|
||||||
|
valid data for <filename>pg_control</>, you can force it to proceed anyway
|
||||||
|
by specifying the <literal>-f</> (force) switch. In this case plausible values
|
||||||
|
will be substituted for the missing data. If <literal>-f</> is used then
|
||||||
|
the recovered database must be treated with even more suspicion than
|
||||||
|
usual --- an immediate dump and reload is imperative. <emphasis>Do not</>
|
||||||
|
execute any data-modifying operations in the database before you dump,
|
||||||
|
as any such action is likely to make the corruption worse.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
The <literal>-n</> (no operation) switch instructs
|
||||||
|
<command>pg_resetxlog</command> to print the values reconstructed from
|
||||||
|
<filename>pg_control</> and then exit without modifying anything.
|
||||||
|
This is mainly a debugging tool, but may be useful as a sanity check
|
||||||
|
before allowing <command>pg_resetxlog</command> to proceed for real.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
The <literal>-x</> and <literal>-l</> switches are intended for use by
|
||||||
|
<application>pg_upgrade</>. In most case they should not be used in
|
||||||
|
manual recovery operations.
|
||||||
</para>
|
</para>
|
||||||
</refsect1>
|
</refsect1>
|
||||||
|
|
||||||
@ -64,8 +82,14 @@ PostgreSQL documentation
|
|||||||
<title>Notes</title>
|
<title>Notes</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
This command can not be used when the <application>postmaster</> is
|
This command must not be used when the <application>postmaster</> is
|
||||||
running.
|
running. <command>pg_resetxlog</command> will refuse to start up if
|
||||||
|
it finds a postmaster lock file in the <literal>datadir</>. If the
|
||||||
|
<application>postmaster</> crashed then a lock file may have been left
|
||||||
|
behind; in that case you can remove the lock file to allow
|
||||||
|
<command>pg_resetxlog</command> to run. But before you do
|
||||||
|
so, make doubly certain that there
|
||||||
|
is no postmaster nor any backend server process still alive.
|
||||||
</para>
|
</para>
|
||||||
</refsect1>
|
</refsect1>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user