From f00da6d841ad3a506aaa7b8d532fd7b5a4a8f247 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 30 Sep 2001 20:16:21 +0000 Subject: Allow the postmaster to accept changes in PGC_BACKEND GUC variables from the config file, so that these changes will propagate to backends started later. Already-started backends continue to ignore changes in these variables. --- doc/src/sgml/runtime.sgml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'doc/src') diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index 6afdd9c9637..19ed4a45c84 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -1,5 +1,5 @@ @@ -845,10 +845,11 @@ env PGOPTIONS='-c geqo=off' psql LOG_CONNECTIONS (boolean) - Prints a line informing about each successful connection to + Prints a line informing about each successful connection in the server log. This is off by default, although it is probably very useful. This option can only be set at server - start. + start or in the postgresql.conf + configuration file. @@ -1223,7 +1224,7 @@ dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir' Sets the maximum number of simultaneously open files in each server - process. The default is 1000. The limit actually used by the code + subprocess. The default is 1000. The limit actually used by the code is the smaller of this setting and the result of sysconf(_SC_OPEN_MAX). Therefore, on systems where sysconf returns a reasonable limit, @@ -1233,7 +1234,10 @@ dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir' processes all try to open that many files. If you find yourself seeing Too many open files failures, try reducing this setting. - This option can only be set at server start. + This option can only be set at server start or in the + postgresql.conf configuration file; + if changed in the configuration file, it only affects + subsequently-started server subprocesses. -- cgit v1.2.3