diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-22 05:26:58 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-22 05:26:58 +0000 |
commit | 1ed5cbbfd847f0011a6fe3670deb75b1a7407f61 (patch) | |
tree | 01c424ce1005bbeef3a947a6b6c6ec2cfe5a464f /src/man | |
parent | 47dd11bdd034a8afeab5e9a3ed12ddbebb475d25 (diff) | |
download | postgresql-1ed5cbbfd847f0011a6fe3670deb75b1a7407f61.tar.gz postgresql-1ed5cbbfd847f0011a6fe3670deb75b1a7407f61.zip |
Final optimizer cleanups.
Diffstat (limited to 'src/man')
-rw-r--r-- | src/man/postmaster.1 | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/src/man/postmaster.1 b/src/man/postmaster.1 index 59ba1d5e03f..4740cd41896 100644 --- a/src/man/postmaster.1 +++ b/src/man/postmaster.1 @@ -1,6 +1,6 @@ .\" This is -*-nroff-*- .\" XXX standard disclaimer belongs here.... -.\" $Header: /cvsroot/pgsql/src/man/Attic/postmaster.1,v 1.14 1999/02/21 03:17:31 tgl Exp $ +.\" $Header: /cvsroot/pgsql/src/man/Attic/postmaster.1,v 1.15 1999/02/22 05:26:58 momjian Exp $ .TH POSTMASTER UNIX 02/20/99 PostgreSQL PostgreSQL .SH "NAME" postmaster - run the Postgres postmaster @@ -13,17 +13,17 @@ n_buffers] .BR "-D" data_dir] [\c +.BR "-N" +n_backends] +.br +.in +5n +[\c .BR "-S" \c ] [\c .BR "-a" system] [\c -.BR "-N" -n_backends] -.br -.in +5n -[\c .BR "-b" backend_pathname] [\c @@ -35,7 +35,6 @@ backend_pathname] [\c .BR "-n" \c ] -.br [\c .BR "-o" backend_options] @@ -81,6 +80,14 @@ is not set, then the directory used is option is not specified, the default directory that was set at compile-time is used. .TP +.BR "-N" " n_backends" +.IR "n_backends" +is the maximum number of backend server processes that this postmaster +is allowed to start. In the stock configuration, this value defaults +to 64, and can be set as high as 1024 if your system will support that +many processes. Both the default and upper limit values can be altered +when building Postgres. +.TP .BR "-S" Specifies that the .IR "postmaster" @@ -108,14 +115,6 @@ connections, use .BR "-a nounauth . This option no longer has any effect. .TP -.BR "-N" " n_backends" -.IR "n_backends" -is the maximum number of backend server processes that this postmaster -is allowed to start. In the stock configuration, this value defaults -to 64, and can be set as high as 1024 if your system will support that -many processes. Both the default and upper limit values can be altered -when building Postgres. -.TP .BR "-b" " backend_pathname" .IR "backend_pathname" is the full pathname of the Postgres backend server executable file that |