diff options
-rw-r--r-- | doc/src/sgml/ref/postmaster.sgml | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/postmaster.sgml b/doc/src/sgml/ref/postmaster.sgml index 0c2149e63b2..0d2a7e93dd2 100644 --- a/doc/src/sgml/ref/postmaster.sgml +++ b/doc/src/sgml/ref/postmaster.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/postmaster.sgml,v 1.29 2002/04/21 19:02:39 thomas Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/postmaster.sgml,v 1.30 2002/06/15 19:52:56 momjian Exp $ PostgreSQL documentation --> @@ -145,7 +145,13 @@ PostgreSQL documentation <para> Disables <function>fsync</function> calls for performance improvement, at the risk of data corruption in event of a - system crash. Read the detailed documentation before using this! + system crash. This parameter corresponds to setting + fsync=false in postgresql.conf. Read the detailed + documentation before using this! + </para> + <para> + <option>--fsync=true</option> has the opposite effect + of this option. </para> </listitem> </varlistentry> @@ -169,7 +175,12 @@ PostgreSQL documentation <para> Allows clients to connect via TCP/IP (Internet domain) connections. Without this option, only local Unix domain - socket connections are accepted. + socket connections are accepted. This option corresponds + to setting tcpip_socket=true in postgresql.conf. + </para> + <para> + <option>--tcpip_socket=false</option> has the opposite + effect of this option. </para> </listitem> </varlistentry> @@ -260,6 +271,10 @@ PostgreSQL documentation to troubleshoot problems. See below for a better way to start the <application>postmaster</application> in the background. </para> + <para> + <option>--silent_mode=false</option> has the opposite effect + of this option. + </para> </listitem> </varlistentry> |