mirror of https://github.com/postgres/postgres
Fix silly typo in redirection example.
This commit is contained in:
parent
ee0bcb8c5e
commit
be7c0a926b
|
@ -1,5 +1,5 @@
|
|||
<!--
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.28 2000/10/16 03:25:17 momjian Exp $
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.29 2000/10/19 04:53:41 tgl Exp $
|
||||
-->
|
||||
|
||||
<Chapter Id="runtime">
|
||||
|
@ -127,7 +127,7 @@ postgres> <userinput>initdb -D /usr/local/pgsql/data</userinput>
|
|||
To start the <application>postmaster</application> in the
|
||||
background, use the usual shell syntax:
|
||||
<screen>
|
||||
> <userinput>postmaster -D /usr/local/pgsql/data > logfile 1>&2 &</userinput>
|
||||
> <userinput>postmaster -D /usr/local/pgsql/data > logfile 2>&1 &</userinput>
|
||||
</screen>
|
||||
It is an extremely good idea to keep the server output around
|
||||
somewhere, as indicated here. It will help both for auditing
|
||||
|
|
Loading…
Reference in New Issue