aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-03-09 05:11:38 +0000
committerBruce Momjian <bruce@momjian.us>2002-03-09 05:11:38 +0000
commitfdcb8516d46877c7090c7115c93610a58c35c669 (patch)
tree8387ebb5bdec2f2ad20e3462e499f4515dbfa841 /src
parentdb1d7a9adae7ed9d91e4c923629000761fa98bf3 (diff)
downloadpostgresql-fdcb8516d46877c7090c7115c93610a58c35c669.tar.gz
postgresql-fdcb8516d46877c7090c7115c93610a58c35c669.zip
Wording improvements to runtime.sgml. Add mention in postgresql.conf
file that SIGHUP or "pg_ctl reload" are required for changes to take affect on a running server.
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/misc/postgresql.conf.sample20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample
index 3b59cbec633..fa1ca8459ee 100644
--- a/src/backend/utils/misc/postgresql.conf.sample
+++ b/src/backend/utils/misc/postgresql.conf.sample
@@ -2,19 +2,23 @@
# PostgreSQL configuration file
# -----------------------------
#
-# This file consists of lines of the form
+# This file consists of lines of the form:
#
# name = value
#
-# (The `=' is optional.) White space is collapsed, comments are
-# introduced by `#' anywhere on a line. The complete list of option
-# names and allowed values can be found in the PostgreSQL
-# documentation. The commented-out settings shown in this file
-# represent the default values.
-
+# (The '=' is optional.) White space may be used. Comments are introduced
+# with '#' anywhere on a line. The complete list of option names and
+# allowed values can be found in the PostgreSQL documentation. The
+# commented-out settings shown in this file represent the default values.
+#
# Any option can also be given as a command line switch to the
-# postmaster, e.g., 'postmaster -c log_connections=on'. Some options
+# postmaster, e.g. 'postmaster -c log_connections=on'. Some options
# can be changed at run-time with the 'SET' SQL command.
+#
+# This file is read on postmaster startup and when the postmaster
+# receives a SIGHUP. If you edit the file on a running system, you have
+# to SIGHUP the postmaster for the changes to take effect, or use
+# "pg_ctl reload".
#========================================================================