runtime.sgml 211.6 KB
Newer Older
1
<!--
2
$PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.317 2005/05/09 17:13:04 momjian Exp $
3 4
-->

5 6
<chapter Id="runtime">
 <title>Server Run-time Environment</title>
7

8
 <para>
9
  This chapter discusses how to set up and run the database server
T
Tom Lane 已提交
10
  and its interactions with the operating system.
11 12 13
 </para>

 <sect1 id="postgres-user">
14
  <title>The <productname>PostgreSQL</productname> User Account</title>
15

16 17 18 19
  <indexterm>
   <primary>postgres user</primary>
  </indexterm>

20
  <para>
T
Tom Lane 已提交
21
   As with any other server daemon that is accessible to the outside world,
22 23 24
   it is advisable to run <productname>PostgreSQL</productname> under a
   separate user account. This user account should only own the data
   that is managed by the server, and should not be shared with other
25
   daemons. (For example, using the user <literal>nobody</literal> is a bad
26 27
   idea.) It is not advisable to install executables owned by this 
   user because compromised systems could then modify their own 
28
   binaries.
29
  </para>
30

31
  <para>
32
   To add a Unix user account to your system, look for a command
33
   <command>useradd</command> or <command>adduser</command>. The user
T
Tom Lane 已提交
34 35
   name <systemitem>postgres</systemitem> is often used, and is assumed
   throughout this book, but you can use another name if you like.
36 37 38 39
  </para>
 </sect1>

 <sect1 id="creating-cluster">
40
  <title>Creating a Database Cluster</title>
41

42 43 44 45 46 47 48 49 50
  <indexterm>
   <primary>database cluster</primary>
  </indexterm>

  <indexterm>
   <primary>data area</primary>
   <see>database cluster</see>
  </indexterm>

51 52
  <para>
   Before you can do anything, you must initialize a database storage
53
   area on disk. We call this a <firstterm>database cluster</firstterm>.
T
Tom Lane 已提交
54 55
   (<acronym>SQL</acronym> uses the term catalog cluster.) A
   database cluster is a collection of databases that is managed by a
56 57
   single instance of a running database server. After initialization, a
   database cluster will contain a database named
58
   <literal>template1</literal>. As the name suggests, this will be used
59
   as a template for subsequently created databases; it should not be
T
Tom Lane 已提交
60 61
   used for actual work.  (See <xref linkend="managing-databases"> for
   information about creating new databases within a cluster.)
62 63
  </para>

64 65
  <para>
   In file system terms, a database cluster will be a single directory
66 67
   under which all data will be stored. We call this the <firstterm>data
   directory</firstterm> or <firstterm>data area</firstterm>. It is
68
   completely up to you where you choose to store your data.  There is no
69
   default, although locations such as
70
   <filename>/usr/local/pgsql/data</filename> or
71
   <filename>/var/lib/pgsql/data</filename> are popular. To initialize a
72 73
   database cluster, use the command <xref
   linkend="app-initdb">,<indexterm><primary>initdb</></> which is
74
   installed with <productname>PostgreSQL</productname>. The desired
T
Tom Lane 已提交
75
   file system location of your database cluster is indicated by the
76
   <option>-D</option> option, for example
77
<screen>
P
Peter Eisentraut 已提交
78
<prompt>$</> <userinput>initdb -D /usr/local/pgsql/data</userinput>
79
</screen>
80 81 82
   Note that you must execute this command while logged into the
   <productname>PostgreSQL</productname> user account, which is
   described in the previous section.
83
  </para>
84

85
  <tip>
86
   <para>
87 88
    As an alternative to the <option>-D</option> option, you can set
    the environment variable <envar>PGDATA</envar>.
89
    <indexterm><primary><envar>PGDATA</envar></primary></indexterm>
90
   </para>
91 92 93 94
  </tip>

  <para>
   <command>initdb</command> will attempt to create the directory you
95 96 97 98 99 100
   specify if it does not already exist. It is likely that it will not
   have the permission to do so (if you followed our advice and created
   an unprivileged account). In that case you should create the
   directory yourself (as root) and change the owner to be the
   <productname>PostgreSQL</productname> user. Here is how this might
   be done:
101 102 103 104
<screen>
root# <userinput>mkdir /usr/local/pgsql/data</userinput>
root# <userinput>chown postgres /usr/local/pgsql/data</userinput>
root# <userinput>su postgres</userinput>
P
Peter Eisentraut 已提交
105
postgres$ <userinput>initdb -D /usr/local/pgsql/data</userinput>
106 107
</screen>
  </para>
108

109 110
  <para>
   <command>initdb</command> will refuse to run if the data directory
T
Tom Lane 已提交
111
   looks like it has already been initialized.</para>
112 113 114

  <para>
   Because the data directory contains all the data stored in the
115
   database, it is essential that it be secured from unauthorized
116
   access. <command>initdb</command> therefore revokes access
117 118
   permissions from everyone but the
   <productname>PostgreSQL</productname> user.
119
  </para>
120

121 122
  <para>
   However, while the directory contents are secure, the default
123
   client authentication setup allows any local user to connect to the
P
Peter Eisentraut 已提交
124
   database and even become the database superuser. If you do not
125 126
   trust other local users, we recommend you use one of
   <command>initdb</command>'s <option>-W</option>, <option>--pwprompt</option>
T
Tom Lane 已提交
127
   or <option>--pwfile</option> options to assign a password to the
P
Peter Eisentraut 已提交
128
   database superuser.<indexterm><primary>password</><secondary>of the
T
Tom Lane 已提交
129 130 131 132
   superuser</></indexterm>  Also, specify <option>-A md5</> or
   <option>-A password</> so that the default <literal>trust</> authentication
   mode is not used; or modify the generated <filename>pg_hba.conf</filename>
   file after running <command>initdb</command>,
133
   <emphasis>before</> you start the server for the first time. (Other
T
Tom Lane 已提交
134 135
   reasonable approaches include using <literal>ident</literal> authentication
   or file system permissions to restrict connections. See <xref
136
   linkend="client-authentication"> for more information.)
137 138
  </para>

139
  <para>
140 141 142 143 144 145 146
   <command>initdb</command> also initializes the default
   locale<indexterm><primary>locale</></> for the database cluster.
   Normally, it will just take the locale settings in the environment
   and apply them to the initialized database.  It is possible to
   specify a different locale for the database; more information about
   that can be found in <xref linkend="locale">.  The sort order used
   within a particular database cluster is set by
147
   <command>initdb</command> and cannot be changed later, short of
148 149 150 151
   dumping all data, rerunning <command>initdb</command>, and reloading
   the data. There is also a performance impact for using locales
   other than <literal>C</> or <literal>POSIX</>. Therefore, it is
   important to make this choice correctly the first time.
152
  </para>
153 154 155 156 157 158

  <para>
   <command>initdb</command> also sets the default character set encoding
   for the database cluster.  Normally this should be chosen to match the
   locale setting.  For details see <xref linkend="multibyte">.
  </para>
159 160 161
 </sect1>

 <sect1 id="postmaster-start">
162
  <title>Starting the Database Server</title>
163 164

  <para>
165
   Before anyone can access the database, you must start the database
166 167 168
   server. The database server program is called
   <command>postmaster</command>.<indexterm><primary>postmaster</></>
   The <command>postmaster</command> must know where to
169 170 171
   find the data it is supposed to use. This is done with the
   <option>-D</option> option. Thus, the simplest way to start the
   server is:
172
<screen>
P
Peter Eisentraut 已提交
173
$ <userinput>postmaster -D /usr/local/pgsql/data</userinput>
174
</screen>
175 176 177
   which will leave the server running in the foreground. This must be
   done while logged into the <productname>PostgreSQL</productname> user
   account. Without <option>-D</option>, the server will try to use
T
Tom Lane 已提交
178 179
   the data directory named by the environment variable <envar>PGDATA</envar>.
   If that variable is not provided either, it will fail.
180 181 182
  </para>

  <para>
T
Tom Lane 已提交
183 184
   Normally it is better to start the <command>postmaster</command> in the
   background.  For this, use the usual shell syntax:
185
<screen>
P
Peter Eisentraut 已提交
186
$ <userinput>postmaster -D /usr/local/pgsql/data &gt;logfile 2&gt;&amp;1 &amp;</userinput>
187
</screen>
T
Tom Lane 已提交
188
   It is important to store the server's <systemitem>stdout</> and
189 190 191 192
   <systemitem>stderr</> output somewhere, as shown above. It will help
   for auditing purposes and to diagnose problems. (See <xref
   linkend="logfile-maintenance"> for a more thorough discussion of log
   file handling.)
193 194 195
  </para>

  <para>
196
   The <command>postmaster</command> also takes a number of other
T
Tom Lane 已提交
197 198
   command line options. For more information, see the
   <xref linkend="app-postmaster"> reference page
199
   and <xref linkend="runtime-config"> below.
200 201
  </para>

202
  <para>
T
Tom Lane 已提交
203 204 205
   This shell syntax can get tedious quickly.  Therefore the wrapper
   program
   <xref linkend="app-pg-ctl"><indexterm><primary>pg_ctl</primary></indexterm>
206
   is provided to simplify some tasks.  For example:
207 208 209 210
<programlisting>
pg_ctl start -l logfile
</programlisting>
   will start the server in the background and put the output into the
211
   named log file. The <option>-D</option> option has the same meaning
T
Tom Lane 已提交
212 213
   here as in the <command>postmaster</command>. <command>pg_ctl</command>
   is also capable of stopping the server.
214 215
  </para>

216 217
  <para>
   Normally, you will want to start the database server when the
P
Peter Eisentraut 已提交
218
   computer boots.<indexterm><primary>booting</><secondary>starting
T
Tom Lane 已提交
219 220
   the server during</></> Autostart scripts are operating-system-specific.
   There are a few distributed with
221
   <productname>PostgreSQL</productname> in the
T
Tom Lane 已提交
222 223
   <filename>contrib/start-scripts</> directory. Installing one will require
   root privileges.
224 225 226
  </para>

  <para>
227 228
   Different systems have different conventions for starting up daemons
   at boot time. Many systems have a file
229
   <filename>/etc/rc.local</filename> or
230 231 232 233 234 235
   <filename>/etc/rc.d/rc.local</filename>. Others use
   <filename>rc.d</> directories. Whatever you do, the server must be
   run by the <productname>PostgreSQL</productname> user account
   <emphasis>and not by root</emphasis> or any other user. Therefore you
   probably should form your commands using <literal>su -c '...'
   postgres</literal>.  For example:
236
<programlisting>
P
Peter Eisentraut 已提交
237
su -c 'pg_ctl start -D /usr/local/pgsql/data -l serverlog' postgres
238 239 240 241
</programlisting>
  </para>

  <para>
T
Tom Lane 已提交
242 243 244
   Here are a few more operating-system-specific suggestions. (In each
   case be sure to use the proper installation directory and user
   name where we show generic values.)
245 246 247 248

   <itemizedlist>
    <listitem>
     <para>
249
      For <productname>FreeBSD</productname>, look at the file
250 251
      <filename>contrib/start-scripts/freebsd</filename> in the
      <productname>PostgreSQL</productname> source distribution.
P
Peter Eisentraut 已提交
252
      <indexterm><primary>FreeBSD</><secondary>start script</secondary></>
253 254 255 256 257 258 259
     </para>
    </listitem>

    <listitem>
     <para>
      On <productname>OpenBSD</productname>, add the following lines
      to the file <filename>/etc/rc.local</filename>:
P
Peter Eisentraut 已提交
260
      <indexterm><primary>OpenBSD</><secondary>start script</secondary></>
261
<programlisting>
262 263 264 265
if [ -x /usr/local/pgsql/bin/pg_ctl -a -x /usr/local/pgsql/bin/postmaster ]; then
    su - -c '/usr/local/pgsql/bin/pg_ctl start -l /var/postgresql/log -s' postgres
    echo -n ' postgresql'
fi
266 267 268 269 270 271
</programlisting>
     </para>
    </listitem>

    <listitem>
     <para>
272
      On <productname>Linux</productname> systems either add
P
Peter Eisentraut 已提交
273
      <indexterm><primary>Linux</><secondary>start script</secondary></>
274
<programlisting>
275
/usr/local/pgsql/bin/pg_ctl start -l logfile -D /usr/local/pgsql/data
276
</programlisting>
277
      to <filename>/etc/rc.d/rc.local</filename> or look at the file
278
      <filename>contrib/start-scripts/linux</filename> in the
279
      <productname>PostgreSQL</productname> source distribution.
280 281 282 283 284
     </para>
    </listitem>

    <listitem>
     <para>
285 286 287
      On <productname>NetBSD</productname>, either use the
      <productname>FreeBSD</productname> or
      <productname>Linux</productname> start scripts, depending on
P
Peter Eisentraut 已提交
288
      preference. <indexterm><primary>NetBSD</><secondary>start script</secondary></>
289 290 291 292 293
     </para>
    </listitem>

    <listitem>
     <para>
294
      On <productname>Solaris</productname>, create a file called
295
      <filename>/etc/init.d/postgresql</filename> that contains
296
      the following line:
P
Peter Eisentraut 已提交
297
      <indexterm><primary>Solaris</><secondary>start script</secondary></>
298 299 300
<programlisting>
su - postgres -c "/usr/local/pgsql/bin/pg_ctl start -l logfile -D /usr/local/pgsql/data"
</programlisting>
301
      Then, create a symbolic link to it in <filename>/etc/rc3.d</> as
302
      <filename>S99postgresql</>.
303 304 305 306 307
     </para>
    </listitem>
   </itemizedlist>

  </para>
308

309
   <para>
310 311
    While the <command>postmaster</command> is running, its
    <acronym>PID</acronym> is stored in the file
312
    <filename>postmaster.pid</filename> in the data directory. This is
313 314 315
    used to prevent multiple <command>postmaster</command> processes
    running in the same data directory and can also be used for
    shutting down the <command>postmaster</command> process.
316 317
   </para>

318
   <sect2 id="postmaster-start-failures">
B
Bruce Momjian 已提交
319
    <title>Server Start-up Failures</title>
320 321

    <para>
322 323 324 325 326
     There are several common reasons the server might fail to
     start. Check the server's log file, or start it by hand (without
     redirecting standard output or standard error) and see what error
     messages appear. Below we explain some of the most common error
     messages in more detail.
327 328 329 330
    </para>

    <para>
<screen>
331 332 333
LOG:  could not bind IPv4 socket: Address already in use
HINT:  Is another postmaster already running on port 5432? If not, wait a few seconds and retry.
FATAL:  could not create TCP/IP listen socket
334
</screen>
335
     This usually means just what it suggests: you tried to start
336
     another <command>postmaster</command> on the same port where one is already running.
337 338
     However, if the kernel error message is not <computeroutput>Address
     already in use</computeroutput> or some variant of that, there may
339
     be a different problem. For example, trying to start a <command>postmaster</command>
340
     on a reserved port number may draw something like:
341
<screen>
342
$ <userinput>postmaster -p 666</userinput>
343 344 345
LOG:  could not bind IPv4 socket: Permission denied
HINT:  Is another postmaster already running on port 666? If not, wait a few seconds and retry.
FATAL:  could not create TCP/IP listen socket
346 347 348 349
</screen>
    </para>

    <para>
350
     A message like
351
<screen>
352
FATAL:  could not create shared memory segment: Invalid argument
P
Peter Eisentraut 已提交
353
DETAIL:  Failed system call was shmget(key=5440001, size=4011376640, 03600).
354
</screen>
355
     probably means your kernel's limit on the size of shared memory is
356 357
     smaller than the work area <productname>PostgreSQL</productname>
     is trying to create (4011376640 bytes in this example). Or it could
358
     mean that you do not have System-V-style shared memory support
359
     configured into your kernel at all. As a temporary workaround, you
360
     can try starting the server with a smaller-than-normal number
361 362
     of buffers (<option>-B</option> switch). You will eventually want
     to reconfigure your kernel to increase the allowed shared memory
363
     size. You may also see this message when trying to start multiple
364
     servers on the same machine, if their total space requested
365
     exceeds the kernel limit.
366 367 368
    </para>

    <para>
369
     An error like
370
<screen>
371
FATAL:  could not create semaphores: No space left on device
P
Peter Eisentraut 已提交
372
DETAIL:  Failed system call was semget(5440126, 17, 03600).
373
</screen>
374 375 376 377 378
     does <emphasis>not</emphasis> mean you've run out of disk
     space. It means your kernel's limit on the number of <systemitem
     class="osname">System V</> semaphores is smaller than the number
     <productname>PostgreSQL</productname> wants to create. As above,
     you may be able to work around the problem by starting the
379
     server with a reduced number of allowed connections
380 381 382
     (<option>-N</option> switch), but you'll eventually want to
     increase the kernel limit.
    </para>
383

P
Peter Eisentraut 已提交
384
    <para>
385
     If you get an <quote>illegal system call</> error, it is likely that
386 387 388
     shared memory or semaphores are not supported in your kernel at
     all. In that case your only option is to reconfigure the kernel to
     enable these features.
P
Peter Eisentraut 已提交
389 390
    </para>

391
    <para>
392 393
     Details about configuring <systemitem class="osname">System V</>
     <acronym>IPC</> facilities are given in <xref linkend="sysvipc">.
394
    </para>
395 396 397 398 399 400
   </sect2>

   <sect2 id="client-connection-problems">
    <title>Client Connection Problems</title>

    <para>
401 402 403 404 405
     Although the error conditions possible on the client side are quite
     varied and application-dependent, a few of them might be directly
     related to how the server was started up. Conditions other than
     those shown below should be documented with the respective client
     application.
406 407 408 409
    </para>

    <para>
<screen>
410
psql: could not connect to server: Connection refused
411
        Is the server running on host "server.joe.com" and accepting
412
        TCP/IP connections on port 5432?
413 414 415
</screen>
     This is the generic <quote>I couldn't find a server to talk
     to</quote> failure. It looks like the above when TCP/IP
416 417
     communication is attempted. A common mistake is to forget to
     configure the server to allow TCP/IP connections.
418 419 420
    </para>

    <para>
421 422
     Alternatively, you'll get this when attempting Unix-domain socket
     communication to a local server:
423
<screen>
424
psql: could not connect to server: No such file or directory
425 426
        Is the server running locally and accepting
        connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
427 428 429 430 431
</screen>
    </para>

    <para>
     The last line is useful in verifying that the client is trying to
432
     connect to the right place. If there is in fact no server
433 434
     running there, the kernel error message will typically be either
     <computeroutput>Connection refused</computeroutput> or
435
     <computeroutput>No such file or directory</computeroutput>, as
436 437
     illustrated. (It is important to realize that
     <computeroutput>Connection refused</computeroutput> in this context
438 439
     does <emphasis>not</emphasis> mean that the server got your
     connection request and rejected it. That case will produce a
440
     different message, as shown in <xref
441 442 443 444 445 446
     linkend="client-authentication-problems">.) Other error messages
     such as <computeroutput>Connection timed out</computeroutput> may
     indicate more fundamental problems, like lack of network
     connectivity.
    </para>
   </sect2>
447 448
  </sect1>

449
  <sect1 id="runtime-config">
450
   <title>Run-time Configuration</title>
451

452 453
   <indexterm>
    <primary>configuration</primary>
P
Peter Eisentraut 已提交
454
    <secondary>of the server</secondary>
455 456
   </indexterm>

457
   <para>
458 459 460 461
    There are a lot of configuration parameters that affect the
    behavior of the database system. In this subsection, we describe
    how to set configuration parameters; the following subsections
    discuss each parameter in detail.
462 463 464
   </para>

   <para>
465
    All parameter names are case-insensitive. Every parameter takes a
T
Tom Lane 已提交
466 467
    value of one of four types: boolean, integer, floating point,
    or string. Boolean values may be written as <literal>ON</literal>,
468 469 470
    <literal>OFF</literal>, <literal>TRUE</literal>,
    <literal>FALSE</literal>, <literal>YES</literal>,
    <literal>NO</literal>, <literal>1</literal>, <literal>0</literal>
T
Tom Lane 已提交
471
    (all case-insensitive) or any unambiguous prefix of these.
472 473
   </para>

474
   <para>
475
    One way to set these parameters is to edit the file
T
Tom Lane 已提交
476 477 478 479
    <filename>postgresql.conf</><indexterm><primary>postgresql.conf</></>,
    which is normally kept in the data directory. (<command>initdb</>
    installs a default copy there.) An example of what this file might look
    like is:
480 481 482
<programlisting>
# This is a comment
log_connections = yes
483
log_destination = 'syslog'
484
search_path = '$user, public'
485
</programlisting>
486
    One parameter is specified per line. The equal sign between name and
487 488
    value is optional. Whitespace is insignificant and blank lines are
    ignored. Hash marks (<literal>#</literal>) introduce comments
489
    anywhere.  Parameter values that are not simple identifiers or
T
Tom Lane 已提交
490
    numbers must be single-quoted.
491 492 493
   </para>

   <para>
494 495 496
    <indexterm>
     <primary>SIGHUP</primary>
    </indexterm>
497 498 499 500 501 502 503
    The configuration file is reread whenever the
    <command>postmaster</command> process receives a
    <systemitem>SIGHUP</> signal (which is most easily sent by means
    of <literal>pg_ctl reload</>). The <command>postmaster</command>
    also propagates this signal to all currently running server
    processes so that existing sessions also get the new
    value. Alternatively, you can send the signal to a single server
B
Bruce Momjian 已提交
504 505 506
    process directly.  Some parameters can only be set at server start;
    any changes to their entries in the configuration file will be ignored
    until the server is restarted.
507 508 509
   </para>

   <para>
510
    A second way to set these configuration parameters is to give them
511
    as a command line option to the <command>postmaster</command>, such as:
512
<programlisting>
513
postmaster -c log_connections=yes -c log_destination='syslog'
514
</programlisting>
515
    Command-line options override any conflicting settings in
T
Tom Lane 已提交
516 517 518 519
    <filename>postgresql.conf</filename>.  Note that this means you won't
    be able to change the value on-the-fly by editing
    <filename>postgresql.conf</filename>, so while the command-line
    method may be convenient, it can cost you flexibility later.
520 521
   </para>

522
   <para>
T
Tom Lane 已提交
523
    Occasionally it is useful to give a command line option to
524
    one particular session only. The environment variable
525 526 527
    <envar>PGOPTIONS</envar> can be used for this purpose on the
    client side:
<programlisting>
528
env PGOPTIONS='-c geqo=off' psql
529
</programlisting>
530 531
    (This works for any <application>libpq</>-based client application, not
    just <application>psql</application>.) Note that this won't work for
T
Tom Lane 已提交
532 533
    parameters that are fixed when the server is started or that must be
    specified in <filename>postgresql.conf</filename>.
534
   </para>
535

536
   <para>
537 538 539
    Furthermore, it is possible to assign a set of option settings to
    a user or a database.  Whenever a session is started, the default
    settings for the user and database involved are loaded.  The
T
Tom Lane 已提交
540 541
    commands <xref linkend="sql-alteruser" endterm="sql-alteruser-title">
    and <xref linkend="sql-alterdatabase" endterm="sql-alterdatabase-title">,
542 543 544 545 546
    respectively, are used to configure these settings.  Per-database
    settings override anything received from the
    <command>postmaster</command> command-line or the configuration
    file, and in turn are overridden by per-user settings; both are
    overridden by per-session options.
547
   </para>
548

549
   <para>
550 551 552 553 554 555 556
    Some parameters can be changed in individual <acronym>SQL</acronym>
    sessions with the <xref linkend="SQL-SET" endterm="SQL-SET-title">
    command, for example:
<screen>
SET ENABLE_SEQSCAN TO OFF;
</screen>
    If <command>SET</> is allowed, it overrides all other sources of
557 558 559 560
    values for the parameter. Some parameters cannot be changed via
    <command>SET</command>: for example, if they control behavior that
    cannot reasonably be changed without restarting
    <productname>PostgreSQL</productname>.  Also, some parameters can
T
Tom Lane 已提交
561 562
    be modified via <command>SET</command> or <command>ALTER</> by superusers,
    but not by ordinary users.
563 564 565 566 567 568 569 570 571 572 573 574 575 576
   </para>

   <para>
    The <xref linkend="SQL-SHOW" endterm="SQL-SHOW-title">
    command allows inspection of the current values of all parameters.
   </para>

   <para>
    The virtual table <structname>pg_settings</structname>
    (described in <xref linkend="view-pg-settings">) also allows
    displaying and updating session run-time parameters.  It is equivalent
    to <command>SHOW</> and <command>SET</>, but can be more convenient
    to use because it can be joined with other tables, or selected from using
    any desired selection condition.
577
   </para>
578
    
579 580
   <sect2 id="runtime-config-file-locations">
    <title>File Locations</title>
581

T
Tom Lane 已提交
582 583 584 585 586 587 588 589 590 591 592 593 594 595
     <para>
      In addition to the <filename>postgresql.conf</filename> file
      already mentioned, <productname>PostgreSQL</productname> uses
      two other manually-edited configuration files, which control
      client authentication (their use is discussed in <xref
      linkend="client-authentication">).
      By default, all three configuration files are stored
      in the database cluster's data directory.  The options described
      in this subsection allow the configuration files to be placed elsewhere.
      (Doing so can ease administration.  In particular it is often
      easier to ensure that the configuration files are properly backed-up
      when they are kept separate.)
     </para>

596
     <variablelist>
597
     <varlistentry id="guc-data-directory" xreflabel="data_directory">
598
      <term><varname>data_directory</varname> (<type>string</type>)</term>
599 600 601
      <indexterm>
       <primary><varname>data_directory</> configuration parameter</primary>
      </indexterm>
602 603
      <listitem>
       <para>
604 605
         Specifies the directory to use for data storage.
         This option can only be set at server start.
606 607 608 609
       </para>
      </listitem>
     </varlistentry>

610
     <varlistentry id="guc-config-file" xreflabel="config_file">
611
      <term><varname>config_file</varname> (<type>string</type>)</term>
612 613 614
      <indexterm>
       <primary><varname>config_file</> configuration parameter</primary>
      </indexterm>
615 616
      <listitem>
       <para>
617
         Specifies the main server configuration file
618
         (customarily called <filename>postgresql.conf</>).
619
         This option can only be set on the postmaster command line.
620 621 622 623
       </para>
      </listitem>
     </varlistentry>

624
     <varlistentry id="guc-hba-file" xreflabel="hba_file">
625
      <term><varname>hba_file</varname> (<type>string</type>)</term>
626 627 628
      <indexterm>
       <primary><varname>hba_file</> configuration parameter</primary>
      </indexterm>
629 630
      <listitem>
       <para>
T
Tom Lane 已提交
631 632
         Specifies the configuration file for host-based authentication
         (customarily called <filename>pg_hba.conf</>).
633 634 635 636 637
         This option can only be set at server start.
       </para>
      </listitem>
     </varlistentry>

638
     <varlistentry id="guc-ident-file" xreflabel="ident_file">
639
      <term><varname>ident_file</varname> (<type>string</type>)</term>
640 641 642
      <indexterm>
       <primary><varname>ident_file</> configuration parameter</primary>
      </indexterm>
643 644 645
      <listitem>
       <para>
         Specifies the configuration file for
T
Tom Lane 已提交
646 647
         <application>ident</> authentication
         (customarily called <filename>pg_ident.conf</>).
648
         This option can only be set at server start.
649 650 651 652
       </para>
      </listitem>
     </varlistentry>

653
     <varlistentry id="guc-external-pid-file" xreflabel="external_pid_file">
654
      <term><varname>external_pid_file</varname> (<type>string</type>)</term>
655 656 657
      <indexterm>
       <primary><varname>external_pid_file</> configuration parameter</primary>
      </indexterm>
658 659
      <listitem>
       <para>
T
Tom Lane 已提交
660 661 662 663
        Specifies the name of an additional process-id (PID) file that the
        <application>postmaster</> should create for use by server
        administration programs.
        This option can only be set at server start.
664 665 666 667
       </para>
      </listitem>
     </varlistentry>
     </variablelist>
668 669

     <para>
T
Tom Lane 已提交
670 671
      In a default installation, none of the above options are set explicitly.
      Instead, the
672
      data directory is specified by the <option>-D</option> command-line
673
      option or the <envar>PGDATA</envar> environment variable, and the
T
Tom Lane 已提交
674
      configuration files are all found within the data directory.
675 676 677
     </para>

     <para>
T
Tom Lane 已提交
678 679
      If you wish to keep the configuration files elsewhere than the
      data directory, the postmaster's <option>-D</option>
680 681
      command-line option or <envar>PGDATA</envar> environment variable
      must point to the directory containing the configuration files,
T
Tom Lane 已提交
682
      and the <varname>data_directory</> option must be set in
683
      <filename>postgresql.conf</filename> (or on the command line) to show
684
      where the data directory is actually located.  Notice that
T
Tom Lane 已提交
685 686
      <varname>data_directory</> overrides <option>-D</option> and
      <envar>PGDATA</envar> for the location
687 688
      of the data directory, but not for the location of the configuration
      files.
689 690 691
     </para>

     <para>
692 693 694 695 696 697 698 699
      If you wish, you can specify the configuration file names and locations
      individually using the options <varname>config_file</>,
      <varname>hba_file</> and/or <varname>ident_file</>.
      <varname>config_file</> can only be specified on the 
      <command>postmaster</command> command line, but the others can be
      set within the main configuration file.  If all three options plus
      <varname>data_directory</> are explicitly set, then it is not necessary
      to specify <option>-D</option> or <envar>PGDATA</envar>.
700 701 702
     </para>

     <para>
703 704 705
      When setting any of these options, a relative path will be interpreted
      with respect to the directory in which the <command>postmaster</command>
      is started.
706
     </para>
707 708
   </sect2>

709 710
   <sect2 id="runtime-config-connection">
    <title>Connections and Authentication</title>
711

712 713
    <sect3 id="runtime-config-connection-settings">
     <title>Connection Settings</title>
714

715
     <variablelist>
716 717 718

     <varlistentry id="guc-listen-addresses" xreflabel="listen_addresses">
      <term><varname>listen_addresses</varname> (<type>string</type>)</term>
719 720 721
      <indexterm>
       <primary><varname>listen_addresses</> configuration parameter</primary>
      </indexterm>
722 723
      <listitem>
       <para>
724 725
         Specifies the TCP/IP address(es) on which the server is
         to listen for connections from client applications.  
726
         The value takes the form of a comma-separated list of host names
727 728 729 730 731 732 733 734
         and/or numeric IP addresses.  The special entry <literal>*</>
         corresponds to all available IP interfaces.
         If the list is empty, the server does not listen on any IP interface
         at all, in which case only Unix-domain sockets can be used to connect
         to it.
         The default value is <systemitem class="systemname">localhost</>,
         which allows only local <quote>loopback</> connections to be made.
         This parameter can only be set at server start.
735
       </para>
736 737
      </listitem>
     </varlistentry>
738 739 740

     <varlistentry id="guc-port" xreflabel="port">
      <term><varname>port</varname> (<type>integer</type>)</term>
741 742 743
      <indexterm>
       <primary><varname>port</> configuration parameter</primary>
      </indexterm>
744 745 746 747 748 749 750 751 752
      <listitem>
       <para>
        The TCP port the server listens on; 5432 by default.  Note that the
        same port number is used for all IP addresses the server listens on.
        This parameter can only be set at server start.
       </para>
      </listitem>
     </varlistentry>

753
     <varlistentry id="guc-max-connections" xreflabel="max_connections">
754
      <term><varname>max_connections</varname> (<type>integer</type>)</term>
755 756 757
      <indexterm>
       <primary><varname>max_connections</> configuration parameter</primary>
      </indexterm>
758 759
      <listitem>
       <para>
760
        Determines the maximum number of concurrent connections to the
761
        database server. The default is typically 100, but may be less
762 763 764
        if your kernel settings will not support it (as determined
        during <application>initdb</>).  This parameter can only be
        set at server start.
765 766 767 768 769 770 771
       </para>

       <para>
        Increasing this parameter may cause <productname>PostgreSQL</>
        to request more <systemitem class="osname">System V</> shared
        memory or semaphores than your operating system's default configuration
        allows. See <xref linkend="sysvipc"> for information on how to
772
        adjust those parameters, if necessary.
773
       </para>
774 775
      </listitem>
     </varlistentry>
776
     
777 778
     <varlistentry id="guc-superuser-reserved-connections"
     xreflabel="superuser_reserved_connections">
779
      <term><varname>superuser_reserved_connections</varname>
780
      (<type>integer</type>)</term>
781 782 783
      <indexterm>
       <primary><varname>superuser_reserved_connections</> configuration parameter</primary>
      </indexterm>
784 785
      <listitem>
       <para>
T
Tom Lane 已提交
786
        Determines the number of connection <quote>slots</quote> that
787
        are reserved for connections by <productname>PostgreSQL</>
788 789 790 791 792 793
        superusers.  At most <xref linkend="guc-max-connections">
        connections can ever be active simultaneously.  Whenever the
        number of active concurrent connections is at least
        <varname>max_connections</> minus
        <varname>superuser_reserved_connections</varname>, new
        connections will be accepted only for superusers.
794 795 796 797
       </para>

       <para>
        The default value is 2. The value must be less than the value of
798
        <varname>max_connections</varname>. This parameter can only be
799
        set at server start.
800 801 802
       </para>
      </listitem>
     </varlistentry>
803

804
     <varlistentry id="guc-unix-socket-directory" xreflabel="unix_socket_directory">
805
      <term><varname>unix_socket_directory</varname> (<type>string</type>)</term>
806 807 808
      <indexterm>
       <primary><varname>unix_socket_directory</> configuration parameter</primary>
      </indexterm>
809 810
      <listitem>
       <para>
811 812 813 814
        Specifies the directory of the Unix-domain socket on which the
        server is to listen for
        connections from client applications.  The default is normally
        <filename>/tmp</filename>, but can be changed at build time.
815
        This parameter can only be set at server start.
816 817 818
       </para>
      </listitem>
     </varlistentry>
819

820
     <varlistentry id="guc-unix-socket-group" xreflabel="unix_socket_group">
821
      <term><varname>unix_socket_group</varname> (<type>string</type>)</term>
822 823 824
      <indexterm>
       <primary><varname>unix_socket_group</> configuration parameter</primary>
      </indexterm>
825 826
      <listitem>
       <para>
827
        Sets the owning group of the Unix-domain socket.  (The owning
828 829
        user of the socket is always the user that starts the
        server.)  In combination with the option
830
        <varname>unix_socket_permissions</varname> this can be used as
831
        an additional access control mechanism for Unix-domain connections.
832 833 834
        By default this is the empty string, which uses the default
        group for the current user.  This option can only be set at
        server start.
835 836 837 838
       </para>
      </listitem>
     </varlistentry>

839
     <varlistentry id="guc-unix-socket-permissions" xreflabel="unix_socket_permissions">
840
      <term><varname>unix_socket_permissions</varname> (<type>integer</type>)</term>
841 842 843
      <indexterm>
       <primary><varname>unix_socket_permissions</> configuration parameter</primary>
      </indexterm>
844 845
      <listitem>
       <para>
T
Tom Lane 已提交
846 847
        Sets the access permissions of the Unix-domain socket.  Unix-domain
        sockets use the usual Unix file system permission set.
848
        The option value is expected to be a numeric mode
849 850 851 852
        specification in the form accepted by the
        <function>chmod</function> and <function>umask</function>
        system calls.  (To use the customary octal format the number
        must start with a <literal>0</literal> (zero).)
853
       </para>
854

855 856 857
       <para>
        The default permissions are <literal>0777</literal>, meaning
        anyone can connect. Reasonable alternatives are
858
        <literal>0770</literal> (only user and group, see also
859
        <varname>unix_socket_group</varname>) and <literal>0700</literal>
T
Tom Lane 已提交
860 861
        (only user). (Note that for a Unix-domain socket, only write
        permission matters and so there is no point in setting or revoking
862 863
        read or execute permissions.)
       </para>
864

865
       <para>
866 867
        This access control mechanism is independent of the one
        described in <xref linkend="client-authentication">.
868 869 870
       </para>

       <para>
871
        This option can only be set at server start.
872 873 874
       </para>
      </listitem>
     </varlistentry>
875
     
876
     <varlistentry id="guc-rendezvous-name" xreflabel="rendezvous_name">
877
      <term><varname>rendezvous_name</varname> (<type>string</type>)</term>
878 879 880
      <indexterm>
       <primary><varname>rendezvous_name</> configuration parameter</primary>
      </indexterm>
881 882
      <listitem>
       <para>
883 884
        Specifies the <productname>Rendezvous</productname> broadcast
        name.  By default, the computer name is used, specified as an
T
Tom Lane 已提交
885 886
        empty string ''.  This option is ignored if the server was not
        compiled with <productname>Rendezvous</productname> support.  This
887
        option can only be set at server start.
888 889 890 891
       </para>
      </listitem>
     </varlistentry>
     
892 893 894 895 896 897
     </variablelist>
     </sect3>
     <sect3 id="runtime-config-connection-security">
     <title>Security and Authentication</title>
     
     <variablelist>
898
     <varlistentry id="guc-authentication-timeout" xreflabel="authentication_timeout">
899
      <term><varname>authentication_timeout</varname> (<type>integer</type>)</term>
P
Peter Eisentraut 已提交
900 901
      <indexterm><primary>timeout</><secondary>client authentication</></indexterm>
      <indexterm><primary>client authentication</><secondary>timeout during</></indexterm>
902 903 904 905
      <indexterm>
       <primary><varname>authentication_timeout</> configuration parameter</primary>
      </indexterm>

906 907
      <listitem>
       <para>
908 909 910 911 912
        Maximum time to complete client authentication, in seconds. If a
        would-be client has not completed the authentication protocol in
        this much time, the server breaks the connection. This prevents
        hung clients from occupying a connection indefinitely. This
        option can only be set at server start or in the
913
        <filename>postgresql.conf</filename> file. The default is 60.
914 915 916
       </para>
      </listitem>
     </varlistentry>
917
     
918
     <varlistentry id="guc-ssl" xreflabel="ssl">
919
      <term><varname>ssl</varname> (<type>boolean</type>)</term>
920
      <indexterm>
921
       <primary><varname>ssl</> configuration parameter</primary>
922
      </indexterm>
923 924
      <listitem>
       <para>
925 926
        Enables <acronym>SSL</> connections. Please read
        <xref linkend="ssl-tcp"> before using this. The default
927
        is off.  This parameter can only be set at server start.
928 929 930 931
       </para>
      </listitem>
     </varlistentry>

932
     <varlistentry id="guc-password-encryption" xreflabel="password_encryption">
933
      <term><varname>password_encryption</varname> (<type>boolean</type>)</term>
934 935 936
      <indexterm>
       <primary><varname>password_encryption</> configuration parameter</primary>
      </indexterm>
937 938
      <listitem>
       <para>
939 940 941 942 943 944 945
        When a password is specified in <xref
        linkend="sql-createuser" endterm="sql-createuser-title"> or
        <xref linkend="sql-alteruser" endterm="sql-alteruser-title">
        without writing either <literal>ENCRYPTED</> or
        <literal>UNENCRYPTED</>, this option determines whether the
        password is to be encrypted. The default is on (encrypt the
        password).
946 947 948 949
       </para>
      </listitem>
     </varlistentry>

950
     <varlistentry id="guc-krb-server-keyfile" xreflabel="krb_server_keyfile">
951
      <term><varname>krb_server_keyfile</varname> (<type>string</type>)</term>
952 953 954
      <indexterm>
       <primary><varname>krb_server_keyfile</> configuration parameter</primary>
      </indexterm>
955 956
      <listitem>
       <para>
957 958
        Sets the location of the Kerberos server key file. See
        <xref linkend="kerberos-auth"> for details.
959 960 961 962
       </para>
      </listitem>
     </varlistentry>

963
     <varlistentry id="guc-db-user-namespace" xreflabel="db_user_namespace">
964
      <term><varname>db_user_namespace</varname> (<type>boolean</type>)</term>
965 966 967
      <indexterm>
       <primary><varname>db_user_namespace</> configuration parameter</primary>
      </indexterm>
968 969
      <listitem>
       <para>
970
        This allows per-database user names.  It is off by default.
971 972
       </para>

973 974 975 976 977 978 979 980 981
       <para>
        If this is on, you should create users as <literal>username@dbname</>.
        When <literal>username</> is passed by a connecting client,
        <literal>@</> and the database name is appended to the user
        name and that database-specific user name is looked up by the
        server. Note that when you create users with names containing
        <literal>@</> within the SQL environment, you will need to
        quote the user name.
       </para>
982

983
       <para>
984 985 986 987
        With this option enabled, you can still create ordinary global
        users.  Simply append <literal>@</> when specifying the user
        name in the client.  The <literal>@</> will be stripped off
        before the user name is looked up by the server.
988
       </para>
989 990 991 992 993 994 995 996

       <note>
        <para>
         This feature is intended as a temporary measure until a
         complete solution is found.  At that time, this option will
         be removed.
        </para>
       </note>
997 998 999
      </listitem>
     </varlistentry>

1000 1001 1002 1003 1004
    </variablelist>
    </sect3>
   </sect2>

   <sect2 id="runtime-config-resource">
1005
    <title>Resource Consumption</title>
1006 1007 1008 1009 1010

    <sect3 id="runtime-config-resource-memory">
     <title>Memory</title>

     <variablelist>
1011
     <varlistentry id="guc-shared-buffers" xreflabel="shared_buffers">
1012
      <term><varname>shared_buffers</varname> (<type>integer</type>)</term>
1013 1014 1015
      <indexterm>
       <primary><varname>shared_buffers</> configuration parameter</primary>
      </indexterm>
1016 1017
      <listitem>
       <para>
1018
        Sets the number of shared memory buffers used by the database
1019 1020 1021
        server. The default is typically 1000, but may be less if your
        kernel settings will not support it (as determined during
        <application>initdb</>).  Each buffer is 8192 bytes, unless a
P
Peter Eisentraut 已提交
1022
        different value of <symbol>BLCKSZ</symbol> was chosen when building
1023
        the server.  This setting must be at least 16, as well as at
1024
        least twice the value of <xref linkend="guc-max-connections">;
1025 1026 1027 1028
        however, settings significantly higher than the minimum are
        usually needed for good performance.  Values of a few thousand
        are recommended for production installations.  This option can
        only be set at server start.
1029 1030 1031 1032 1033 1034 1035
       </para>

       <para>
        Increasing this parameter may cause <productname>PostgreSQL</>
        to request more <systemitem class="osname">System V</> shared
        memory than your operating system's default configuration
        allows. See <xref linkend="sysvipc"> for information on how to
1036
        adjust those parameters, if necessary.
1037 1038 1039 1040
       </para>
      </listitem>
     </varlistentry>

1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
     <varlistentry id="guc-temp-buffers" xreflabel="temp_buffers">
      <term><varname>temp_buffers</varname> (<type>integer</type>)</term>
      <indexterm>
       <primary><varname>temp_buffers</> configuration parameter</primary>
      </indexterm>
      <listitem>
       <para>
        Sets the maximum number of temporary buffers used by each database
        session.  These are session-local buffers used only for access
        to temporary tables.  The default is 1000.  The setting can
        be changed within individual sessions, but only up until the
        first use of temporary tables within a session; subsequent
        attempts to change the value will have no effect on that session.
       </para>

       <para>
        A session will allocate temporary buffers as needed up to the limit
        given by <varname>temp_buffers</>.  The cost of setting a large
        value in sessions that do not actually need a lot of temporary
        buffers is only a buffer descriptor, or about 64 bytes, per
        increment in <varname>temp_buffers</>.  However if a buffer is
        actually used an additional 8192 bytes will be consumed for it
        (or in general <symbol>BLCKSZ</symbol> bytes).
       </para>
      </listitem>
     </varlistentry>

1068
     <varlistentry id="guc-work-mem" xreflabel="work_mem">
1069
      <term><varname>work_mem</varname> (<type>integer</type>)</term>
1070 1071 1072
      <indexterm>
       <primary><varname>work_mem</> configuration parameter</primary>
      </indexterm>
1073 1074
      <listitem>
       <para>
1075 1076
        Specifies the amount of memory to be used by internal sort operations
        and hash tables before switching to temporary disk files. The value is
1077 1078 1079 1080
        specified in kilobytes, and defaults to 1024 kilobytes (1 MB).
        Note that for a complex query, several sort or hash operations might be
        running in parallel; each one will be allowed to use as much memory
        as this value specifies before it starts to put data into temporary
1081 1082 1083 1084 1085 1086
        files. Also, several running sessions could be doing such operations
        concurrently.  So the total memory used could be many
        times the value of <varname>work_mem</varname>; it is necessary to
        keep this fact in mind when choosing the value. Sort operations are
        used for <literal>ORDER BY</>, <literal>DISTINCT</>, and
        merge joins.
1087
        Hash tables are used in hash joins, hash-based aggregation, and
1088
        hash-based processing of <literal>IN</> subqueries.
1089 1090 1091
       </para>
      </listitem>
     </varlistentry>
1092
     
1093
     <varlistentry id="guc-maintenance-work-mem" xreflabel="maintenance_work_mem">
1094
      <term><varname>maintenance_work_mem</varname> (<type>integer</type>)</term>
1095 1096 1097
      <indexterm>
       <primary><varname>maintenance_work_mem</> configuration parameter</primary>
      </indexterm>
1098 1099
      <listitem>
       <para>
1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
        Specifies the maximum amount of memory to be used in maintenance
        operations, such as <command>VACUUM</command>, <command>CREATE
        INDEX</>, and <command>ALTER TABLE ADD FOREIGN KEY</>.
        The value is specified in kilobytes, and defaults to 16384 kilobytes
        (16 MB).  Since only one of these operations can be executed at 
        a time by a database session, and an installation normally doesn't
        have very many of them happening concurrently, it's safe to set this
        value significantly larger than <varname>work_mem</varname>.  Larger
        settings may improve performance for vacuuming and for restoring
        database dumps.
1110 1111 1112 1113
       </para>
      </listitem>
     </varlistentry>

1114 1115
     <varlistentry id="guc-max-stack-depth" xreflabel="max_stack_depth">
      <term><varname>max_stack_depth</varname> (<type>integer</type>)</term>
1116 1117 1118
      <indexterm>
       <primary><varname>max_stack_depth</> configuration parameter</primary>
      </indexterm>
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136
      <listitem>
       <para>
        Specifies the maximum safe depth of the server's execution stack.
        The ideal setting for this parameter is the actual stack size limit
        enforced by the kernel (as set by <literal>ulimit -s</> or local
        equivalent), less a safety margin of a megabyte or so.  The safety
        margin is needed because the stack depth is not checked in every
        routine in the server, but only in key potentially-recursive routines
        such as expression evaluation.  Setting the parameter higher than
        the actual kernel limit will mean that a runaway recursive function
        can crash an individual backend process.  The default setting is
        2048 KB (two megabytes), which is conservatively small and unlikely
        to risk crashes.  However, it may be too small to allow execution
        of complex functions.
       </para>
      </listitem>
     </varlistentry>

1137 1138 1139 1140 1141 1142
     </variablelist>
     </sect3>
     <sect3 id="runtime-config-resource-fsm">
     <title>Free Space Map</title>

     <variablelist>
1143
     <varlistentry id="guc-max-fsm-pages" xreflabel="max_fsm_pages">
1144
      <term><varname>max_fsm_pages</varname> (<type>integer</type>)</term>
1145 1146 1147
      <indexterm>
       <primary><varname>max_fsm_pages</> configuration parameter</primary>
      </indexterm>
1148 1149
      <listitem>
       <para>
1150 1151 1152
        Sets the maximum number of disk pages for which free space will
        be tracked in the shared free-space map.  Six bytes of shared memory
        are consumed for each page slot.  This setting must be more than
1153
        16 * <varname>max_fsm_relations</varname>.  The default is 20000.
1154 1155 1156 1157
        The last few lines of a database-wide <command>VACUUM VERBOSE</> 
        can help in determining if the the default setting is suitable.  
        A <literal>NOTICE</> message is also printed during such an operation
        if the current setting is too low.
1158
        This option can only be set at server start.
1159 1160 1161
       </para>
      </listitem>
     </varlistentry>
1162

1163
     <varlistentry id="guc-max-fsm-relations" xreflabel="max_fsm_relations">
1164
      <term><varname>max_fsm_relations</varname> (<type>integer</type>)</term>
1165 1166 1167
      <indexterm>
       <primary><varname>max_fsm_relations</> configuration parameter</primary>
      </indexterm>
1168 1169 1170 1171 1172 1173
      <listitem>
       <para>
        Sets the maximum number of relations (tables and indexes) for which
        free space will be tracked in the shared free-space map.  Roughly
        fifty bytes of shared memory are consumed for each slot.
        The default is 1000.
1174 1175 1176 1177
        The last few lines of a database-wide <command>VACUUM VERBOSE</>
        can help in determining if the the default setting is suitable.  
        A <literal>NOTICE</> message is also printed during such an operation
        if the current setting is too low.
1178 1179 1180 1181 1182 1183 1184
        This option can only be set at server start.
       </para>
      </listitem>
     </varlistentry>
     
     </variablelist>
     </sect3>
1185 1186
     <sect3 id="runtime-config-resource-kernel">
     <title>Kernel Resource Usage</title>
1187 1188
     <variablelist>

1189
     <varlistentry id="guc-max-files-per-process" xreflabel="max_files_per_process">
1190
      <term><varname>max_files_per_process</varname> (<type>integer</type>)</term>
1191 1192 1193
      <indexterm>
       <primary><varname>max_files_per_process</> configuration parameter</primary>
      </indexterm>
1194 1195 1196
      <listitem>
       <para>
        Sets the maximum number of simultaneously open files allowed to each
1197 1198 1199 1200 1201 1202 1203 1204
        server subprocess. The default is 1000. If the kernel is enforcing
        a safe per-process limit, you don't need to worry about this setting.
        But on some platforms (notably, most BSD systems), the kernel will
        allow individual processes to open many more files than the system
        can really support when a large number of processes all try to open
        that many files. If you find yourself seeing <quote>Too many open
        files</> failures, try reducing this setting.
        This option can only be set at server start.
1205 1206 1207 1208
       </para>
      </listitem>
     </varlistentry>
     
1209
     <varlistentry id="guc-preload-libraries" xreflabel="preload_libraries">
1210
      <term><varname>preload_libraries</varname> (<type>string</type>)</term>
1211 1212 1213
      <indexterm>
       <primary><varname>preload_libraries</> configuration parameter</primary>
      </indexterm>
1214 1215 1216
      <listitem>
       <para>
        This variable specifies one or more shared libraries that are
1217 1218 1219 1220
        to be preloaded at server start. A parameterless
        initialization function can optionally be called for each
        library.  To specify that, add a colon and the name of the
        initialization function after the library name. For example
1221 1222
        <literal>'$libdir/mylib:mylib_init'</literal> would cause
        <literal>mylib</> to be preloaded and <literal>mylib_init</>
1223 1224
        to be executed. If more than one library is to be loaded,
        separate their names with commas.
1225
       </para>
1226

1227
       <para>
T
Tom Lane 已提交
1228 1229
        If a specified library or initialization function is not found,
        the server will fail to start.
1230 1231 1232
       </para>

       <para>
1233 1234 1235
        <productname>PostgreSQL</productname> procedural language
        libraries may be preloaded in this way, typically by using the
        syntax <literal>'$libdir/plXXX:plXXX_init'</literal> where
1236 1237
        <literal>XXX</literal> is <literal>pgsql</>, <literal>perl</>,
        <literal>tcl</>, or <literal>python</>.
1238 1239 1240 1241 1242
       </para>

       <para>
        By preloading a shared library (and initializing it if
        applicable), the library startup time is avoided when the
1243
        library is first used.  However, the time to start each new
T
Tom Lane 已提交
1244 1245 1246
        server process may increase slightly, even if that process never
        uses the library.  So this option is recommended only for
        libraries that will be used in most sessions.
1247 1248
       </para>
      </listitem>
1249 1250 1251 1252 1253 1254
     </varlistentry>

     </variablelist>
    </sect3>

    <sect3 id="runtime-config-resource-vacuum-cost">
1255 1256 1257
     <title>Cost-Based Vacuum Delay</title>

     <para>
1258 1259 1260 1261 1262 1263 1264 1265
      During the execution of <xref linkend="sql-vacuum"
      endterm="sql-vacuum-title"> and <xref linkend="sql-analyze"
      endterm="sql-analyze-title"> commands, the system maintains an
      internal counter that keeps track of the estimated cost of the
      various I/O operations that are performed.  When the accumulated
      cost reaches a limit (specified by
      <varname>vacuum_cost_limit</varname>), the process performing
      the operation will sleep for a while (specified by
1266
      <varname>vacuum_cost_delay</varname>). Then it will reset the
1267 1268 1269 1270
      counter and continue execution.
     </para>

     <para>
1271
      The intent of this feature is to allow administrators to reduce
1272
      the I/O impact of these commands on concurrent database
1273
      activity. There are many situations in which it is not very
1274
      important that maintenance commands like
1275
      <command>VACUUM</command> and <command>ANALYZE</command> finish
1276
      quickly; however, it is usually very important that these
1277 1278 1279 1280 1281 1282 1283
      commands do not significantly interfere with the ability of the
      system to perform other database operations. Cost-based vacuum
      delay provides a way for administrators to achieve this.
     </para>

     <para>
      This feature is disabled by default. To enable it, set the
1284
      <varname>vacuum_cost_delay</varname> variable to a nonzero
1285 1286
      value.
     </para>
1287 1288

     <variablelist>
1289 1290
      <varlistentry id="guc-vacuum-cost-delay" xreflabel="vacuum_cost_delay">
       <term><varname>vacuum_cost_delay</varname> (<type>integer</type>)</term>
1291 1292 1293
       <indexterm>
        <primary><varname>vacuum_cost_delay</> configuration parameter</primary>
       </indexterm>
1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
       <listitem>
        <para>
         The length of time, in milliseconds, that the process will sleep
         when the cost limit has been exceeded.
         The default value is 0, which disables the cost-based vacuum
         delay feature.  Positive values enable cost-based vacuuming.
         Note that on many systems, the effective resolution
         of sleep delays is 10 milliseconds; setting
         <varname>vacuum_cost_delay</varname> to a value that is
         not a multiple of 10 may have the same results as setting it
         to the next higher multiple of 10.
        </para>
       </listitem>
      </varlistentry>

1309
      <varlistentry id="guc-vacuum-cost-page-hit" xreflabel="vacuum_cost_page_hit">
1310
       <term><varname>vacuum_cost_page_hit</varname> (<type>integer</type>)</term>
1311 1312 1313
       <indexterm>
        <primary><varname>vacuum_cost_page_hit</> configuration parameter</primary>
       </indexterm>
1314 1315
       <listitem>
        <para>
1316
         The estimated cost for vacuuming a buffer found in the shared buffer
1317 1318 1319 1320 1321 1322
         cache. It represents the cost to lock the buffer pool, lookup
         the shared hash table and scan the content of the page. The
         default value is 1.
        </para>
       </listitem>
      </varlistentry>
1323

1324
      <varlistentry id="guc-vacuum-cost-page-miss" xreflabel="vacuum_cost_page_miss">
1325
       <term><varname>vacuum_cost_page_miss</varname> (<type>integer</type>)</term>
1326 1327 1328
       <indexterm>
        <primary><varname>vacuum_cost_page_miss</> configuration parameter</primary>
       </indexterm>
1329 1330
       <listitem>
        <para>
1331
         The estimated cost for vacuuming a buffer that has to be read from
1332 1333 1334 1335 1336 1337
         disk.  This represents the effort to lock the buffer pool,
         lookup the shared hash table, read the desired block in from
         the disk and scan its content. The default value is 10.
        </para>
       </listitem>
      </varlistentry>
1338

1339
      <varlistentry id="guc-vacuum-cost-page-dirty" xreflabel="vacuum_cost_page_dirty">
1340
       <term><varname>vacuum_cost_page_dirty</varname> (<type>integer</type>)</term>
1341 1342 1343
       <indexterm>
        <primary><varname>vacuum_cost_page_dirty</> configuration parameter</primary>
       </indexterm>
1344 1345
       <listitem>
        <para>
1346
         The estimated cost charged when vacuum modifies a block that was
1347 1348 1349 1350 1351 1352
         previously clean. It represents the extra I/O required to
         flush the dirty block out to disk again. The default value is
         20.
        </para>
       </listitem>
      </varlistentry>
1353

1354
      <varlistentry id="guc-vacuum-cost-limit" xreflabel="vacuum_cost_limit">
1355
       <term><varname>vacuum_cost_limit</varname> (<type>integer</type>)</term>
1356 1357 1358
       <indexterm>
        <primary><varname>vacuum_cost_limit</> configuration parameter</primary>
       </indexterm>
1359 1360
       <listitem>
        <para>
1361 1362
         The accumulated cost that will cause the vacuuming process to sleep.
         The default value is 200.
1363 1364 1365
        </para>
       </listitem>
      </varlistentry>
1366
     </variablelist>
1367 1368 1369

     <note>
      <para>
1370
       There are certain operations that hold critical locks and should
1371 1372 1373 1374
       therefore complete as quickly as possible.  Cost-based vacuum
       delays do not occur during such operations.  Therefore it is
       possible that the cost accumulates far higher than the specified
       limit.  To avoid uselessly long delays in such cases, the actual
1375
       delay is calculated as <varname>vacuum_cost_delay</varname> *
1376 1377
       <varname>accumulated_balance</varname> /
       <varname>vacuum_cost_limit</varname> with a maximum of
1378
       <varname>vacuum_cost_delay</varname> * 4.
1379 1380 1381
      </para>
     </note>

1382
    </sect3>
1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408

    <sect3 id="runtime-config-resource-background-writer">
     <title>Background Writer</title>

     <para>
      Beginning in <productname>PostgreSQL</> 8.0, there is a separate server
      process called the <firstterm>background writer</>, whose sole function
      is to issue writes of <quote>dirty</> shared buffers.  The intent is
      that server processes handling user queries should seldom or never have
      to wait for a write to occur, because the background writer will do it.
      This arrangement also reduces the performance penalty associated with
      checkpoints.  The background writer will continuously trickle out dirty
      pages to disk, so that only a few pages will need to be forced out when
      checkpoint time arrives, instead of the storm of dirty-buffer writes that
      formerly occurred at each checkpoint.  However there is a net overall
      increase in I/O load, because where a repeatedly-dirtied page might
      before have been written only once per checkpoint interval, the
      background writer might write it several times in the same interval.
      In most situations a continuous low load is preferable to periodic
      spikes, but the parameters discussed in this section can be used to tune
      the behavior for local needs.
     </para>

     <variablelist>
      <varlistentry id="guc-bgwriter-delay" xreflabel="bgwriter_delay">
       <term><varname>bgwriter_delay</varname> (<type>integer</type>)</term>
1409 1410 1411
       <indexterm>
        <primary><varname>bgwriter_delay</> configuration parameter</primary>
       </indexterm>
1412 1413 1414
       <listitem>
        <para>
         Specifies the delay between activity rounds for the
1415 1416
         background writer.  In each round the writer issues writes
         for some number of dirty buffers (controllable by the
1417
         following parameters).  It then sleeps for <varname>bgwriter_delay</>
1418 1419 1420 1421 1422
         milliseconds, and repeats.  The default value is 200. Note
         that on many systems, the effective resolution of sleep
         delays is 10 milliseconds; setting <varname>bgwriter_delay</>
         to a value that is not a multiple of 10 may have the same
         results as setting it to the next higher multiple of 10.
1423 1424 1425 1426 1427 1428
         This option can only be set at server start or in the
         <filename>postgresql.conf</filename> file.
        </para>
       </listitem>
      </varlistentry>

1429 1430
      <varlistentry id="guc-bgwriter-lru-percent" xreflabel="bgwriter_lru_percent">
       <term><varname>bgwriter_lru_percent</varname> (<type>floating point</type>)</term>
1431
       <indexterm>
1432
        <primary><varname>bgwriter_lru_percent</> configuration parameter</primary>
1433
       </indexterm>
1434 1435
       <listitem>
        <para>
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481
         To reduce the probability that server processes will need to issue
         their own writes, the background writer tries to write buffers that
         are likely to be recycled soon.  In each round, it examines up to
         <varname>bgwriter_lru_percent</> of the buffers that are nearest to
         being recycled, and writes any that are dirty.
         The default value is 1.0 (this is a percentage of the total number
         of shared buffers).
         This option can only be set at server start or in the
         <filename>postgresql.conf</filename> file.
        </para>
       </listitem>
      </varlistentry>

      <varlistentry id="guc-bgwriter-lru-maxpages" xreflabel="bgwriter_lru_maxpages">
       <term><varname>bgwriter_lru_maxpages</varname> (<type>integer</type>)</term>
       <indexterm>
        <primary><varname>bgwriter_lru_maxpages</> configuration parameter</primary>
       </indexterm>
       <listitem>
        <para>
         In each round, no more than this many buffers will be written
         as a result of scanning soon-to-be-recycled buffers.
         The default value is 5.
         This option can only be set at server start or in the
         <filename>postgresql.conf</filename> file.
        </para>
       </listitem>
      </varlistentry>

      <varlistentry id="guc-bgwriter-all-percent" xreflabel="bgwriter_all_percent">
       <term><varname>bgwriter_all_percent</varname> (<type>floating point</type>)</term>
       <indexterm>
        <primary><varname>bgwriter_all_percent</> configuration parameter</primary>
       </indexterm>
       <listitem>
        <para>
         To reduce the amount of work that will be needed at checkpoint time,
         the background writer also does a circular scan through the entire
         buffer pool, writing buffers that are found to be dirty.
         In each round, it examines up to
         <varname>bgwriter_all_percent</> of the buffers for this purpose.
         The default value is 0.333 (this is a percentage of the total number
         of shared buffers).  With the default <varname>bgwriter_delay</>
         setting, this will allow the entire shared buffer pool to be scanned
         about once per minute.
         This option can only be set at server start or in the
1482 1483 1484 1485 1486
         <filename>postgresql.conf</filename> file.
        </para>
       </listitem>
      </varlistentry>

1487 1488
      <varlistentry id="guc-bgwriter-all-maxpages" xreflabel="bgwriter_all_maxpages">
       <term><varname>bgwriter_all_maxpages</varname> (<type>integer</type>)</term>
1489
       <indexterm>
1490
        <primary><varname>bgwriter_all_maxpages</> configuration parameter</primary>
1491
       </indexterm>
1492 1493
       <listitem>
        <para>
1494 1495 1496 1497 1498 1499
         In each round, no more than this many buffers will be written
         as a result of the scan of the entire buffer pool.  (If this
         limit is reached, the scan stops, and resumes at the next buffer
         during the next round.)
         The default value is 5.
         This option can only be set at server start or in the
1500 1501 1502 1503 1504 1505 1506
         <filename>postgresql.conf</filename> file.
        </para>
       </listitem>
      </varlistentry>
     </variablelist>

     <para>
1507 1508
      Smaller values of <varname>bgwriter_all_percent</varname> and
      <varname>bgwriter_all_maxpages</varname> reduce the extra I/O load
1509 1510
      caused by the background writer, but leave more work to be done
      at checkpoint time.  To reduce load spikes at checkpoints,
1511 1512 1513 1514 1515 1516 1517 1518 1519
      increase these two values.
      Similarly, smaller values of <varname>bgwriter_lru_percent</varname> and
      <varname>bgwriter_lru_maxpages</varname> reduce the extra I/O load
      caused by the background writer, but make it more likely that server
      processes will have to issue writes for themselves, delaying interactive
      queries.
      To disable background writing entirely,
      set both <varname>maxpages</varname> values and/or both
      <varname>percent</varname> values to zero.
1520 1521 1522
     </para>
    </sect3>

1523
   </sect2>
1524

1525
   <sect2 id="runtime-config-wal">
1526
    <title>Write Ahead Log</title>
1527

1528 1529 1530 1531 1532 1533 1534 1535 1536
   <para>
    See also <xref linkend="wal-configuration"> for details on WAL
    tuning.
   </para>

    <sect3 id="runtime-config-wal-settings">
     <title>Settings</title>
     <variablelist>
     
1537
     <varlistentry id="guc-fsync" xreflabel="fsync">
1538
      <indexterm>
1539
       <primary><varname>fsync</> configuration parameter</primary>
1540
      </indexterm>
1541
      <term><varname>fsync</varname> (<type>boolean</type>)</term>
1542 1543
      <listitem>
       <para>
1544 1545 1546 1547 1548
        If this option is on, the <productname>PostgreSQL</> server
        will use the <function>fsync()</> system call in several places
        to make sure that updates are physically written to disk. This
        insures that a database cluster will recover to a
        consistent state after an operating system or hardware crash.
1549
       </para>
1550

1551
       <para>
1552 1553 1554 1555
        However, using <function>fsync()</function> results in a
        performance penalty: when a transaction is committed,
        <productname>PostgreSQL</productname> must wait for the
        operating system to flush the write-ahead log to disk.  When
1556
        <varname>fsync</varname> is disabled, the operating system is
1557 1558 1559 1560 1561
        allowed to do its best in buffering, ordering, and delaying
        writes. This can result in significantly improved performance.
        However, if the system crashes, the results of the last few
        committed transactions may be lost in part or whole. In the
        worst case, unrecoverable data corruption may occur.
1562 1563 1564
        (Crashes of the database server itself are <emphasis>not</>
        a risk factor here.  Only an operating-system-level crash
        creates a risk of corruption.)
1565
       </para>
1566

1567
       <para>
1568
        Due to the risks involved, there is no universally correct
1569 1570
        setting for <varname>fsync</varname>. Some administrators
        always disable <varname>fsync</varname>, while others only
1571 1572
        turn it off for bulk loads, where there is a clear restart
        point if something goes wrong, whereas some administrators
1573 1574
        always leave <varname>fsync</varname> enabled. The default is
        to enable <varname>fsync</varname>, for maximum reliability.
1575 1576
        If you trust your operating system, your hardware, and your
        utility company (or your battery backup), you can consider
1577
        disabling <varname>fsync</varname>.
1578
       </para>
1579

1580 1581 1582 1583 1584 1585 1586
       <para>
        This option can only be set at server start or in the
        <filename>postgresql.conf</filename> file.
       </para>
      </listitem>
     </varlistentry>
     
1587
     <varlistentry id="guc-wal-sync-method" xreflabel="wal_sync_method">
1588
      <term><varname>wal_sync_method</varname> (<type>string</type>)</term>
1589 1590 1591
      <indexterm>
       <primary><varname>wal_sync_method</> configuration parameter</primary>
      </indexterm>
1592 1593 1594 1595
      <listitem>
       <para>
        Method used for forcing WAL updates out to disk.  Possible
        values are
1596 1597
        <literal>fsync</> (call <function>fsync()</> at each commit),
        <literal>fdatasync</> (call <function>fdatasync()</> at each commit),
1598
        <literal>fsync_writethrough</> (call <function>_commit()</> at each commit on Windows),
1599 1600
        <literal>open_sync</> (write WAL files with <function>open()</> option <symbol>O_SYNC</>), and
        <literal>open_datasync</> (write WAL files with <function>open()</> option <symbol>O_DSYNC</>).
1601
        Not all of these choices are available on all platforms.
1602
        If <varname>fsync</varname> is off then this setting is irrelevant.
1603 1604 1605 1606 1607 1608
        This option can only be set at server start or in the
        <filename>postgresql.conf</filename> file.
       </para>
      </listitem>
     </varlistentry>
     
1609
     <varlistentry id="guc-wal-buffers" xreflabel="wal_buffers">
1610
      <term><varname>wal_buffers</varname> (<type>integer</type>)</term>
1611 1612 1613
      <indexterm>
       <primary><varname>wal_buffers</> configuration parameter</primary>
      </indexterm>
1614 1615
      <listitem>
       <para>
1616 1617 1618 1619 1620 1621 1622 1623 1624 1625
        Number of disk-page buffers allocated in shared memory for WAL data.
        The default is 8.  The setting need only be large enough to hold
        the amount of WAL data generated by one typical transaction.
        This option can only be set at server start.
       </para>
      </listitem>
     </varlistentry>
                
     <varlistentry id="guc-commit-delay" xreflabel="commit_delay">
      <term><varname>commit_delay</varname> (<type>integer</type>)</term>
1626 1627 1628
      <indexterm>
       <primary><varname>commit_delay</> configuration parameter</primary>
      </indexterm>
1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647
      <listitem>
       <para>
        Time delay between writing a commit record to the WAL buffer
        and flushing the buffer out to disk, in microseconds. A
        nonzero delay can allow multiple transactions to be committed
        with only one <function>fsync()</function> system call, if
        system load is high enough that additional transactions become
        ready to commit within the given interval. But the delay is
        just wasted if no other transactions become ready to
        commit. Therefore, the delay is only performed if at least
        <varname>commit_siblings</varname> other transactions are
        active at the instant that a server process has written its
        commit record. The default is zero (no delay).
       </para>
      </listitem>
     </varlistentry>

     <varlistentry id="guc-commit-siblings" xreflabel="commit_siblings">
      <term><varname>commit_siblings</varname> (<type>integer</type>)</term>
1648 1649 1650
      <indexterm>
       <primary><varname>commit_siblings</> configuration parameter</primary>
      </indexterm>
1651 1652 1653 1654 1655 1656 1657
      <listitem>
       <para>
        Minimum number of concurrent open transactions to require
        before performing the <varname>commit_delay</> delay. A larger
        value makes it more probable that at least one other
        transaction will become ready to commit during the delay
        interval. The default is five.
1658 1659 1660
       </para>
      </listitem>
     </varlistentry>
1661

1662 1663 1664 1665
     </variablelist>
     </sect3>
     <sect3 id="runtime-config-wal-checkpoints">
     <title>Checkpoints</title>
1666

1667
    <variablelist>
1668
     <varlistentry id="guc-checkpoint-segments" xreflabel="checkpoint_segments">
1669
      <term><varname>checkpoint_segments</varname> (<type>integer</type>)</term>
1670 1671 1672
      <indexterm>
       <primary><varname>checkpoint_segments</> configuration parameter</primary>
      </indexterm>
1673 1674
      <listitem>
       <para>
1675 1676 1677 1678
        Maximum distance between automatic WAL checkpoints, in log
        file segments (each segment is normally 16 megabytes). The
        default is three.  This option can only be set at server start
        or in the <filename>postgresql.conf</filename> file.
1679 1680 1681
       </para>
      </listitem>
     </varlistentry>
1682

1683
     <varlistentry id="guc-checkpoint-timeout" xreflabel="checkpoint_timeout">
1684
      <term><varname>checkpoint_timeout</varname> (<type>integer</type>)</term>
1685 1686 1687
      <indexterm>
       <primary><varname>checkpoint_timeout</> configuration parameter</primary>
      </indexterm>
1688 1689
      <listitem>
       <para>
1690 1691 1692 1693
        Maximum time between automatic WAL checkpoints, in
        seconds. The default is 300 seconds.  This option can only be
        set at server start or in the <filename>postgresql.conf</>
        file.
1694 1695 1696
       </para>
      </listitem>
     </varlistentry>
1697

1698
     <varlistentry id="guc-checkpoint-warning" xreflabel="checkpoint_warning">
1699
      <term><varname>checkpoint_warning</varname> (<type>integer</type>)</term>
1700 1701 1702
      <indexterm>
       <primary><varname>checkpoint_warning</> configuration parameter</primary>
      </indexterm>
1703 1704
      <listitem>
       <para>
T
Tom Lane 已提交
1705
        Write a message to the server log if checkpoints caused by
1706 1707 1708
        the filling of checkpoint segment files happen closer together
        than this many seconds.  The default is 30 seconds.
        Zero turns off the warning.
1709 1710 1711
       </para>
      </listitem>
     </varlistentry>
T
Tom Lane 已提交
1712 1713 1714 1715 1716 1717 1718 1719 1720

     </variablelist>
     </sect3>
     <sect3 id="runtime-config-wal-archiving">
     <title>Archiving</title>

    <variablelist>
     <varlistentry id="guc-archive-command" xreflabel="archive_command">
      <term><varname>archive_command</varname> (<type>string</type>)</term>
1721 1722 1723
      <indexterm>
       <primary><varname>archive_command</> configuration parameter</primary>
      </indexterm>
T
Tom Lane 已提交
1724 1725
      <listitem>
       <para>
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737
        The shell command to execute to archive a completed segment of
        the WAL file series. If this is an empty string (the default),
        WAL archiving is disabled. Any <literal>%p</> in the string is
        replaced by the absolute path of the file to archive, and any
        <literal>%f</> is replaced by the file name only. Use
        <literal>%%</> to embed an actual <literal>%</> character in the
        command. For more information see <xref
        linkend="backup-archiving-wal">. This option can only be set at
        server start or in the <filename>postgresql.conf</filename>
        file.
       </para>
       <para>
T
Tom Lane 已提交
1738 1739
        It is important for the command to return a zero exit status if
        and only if it succeeds.  Examples:
1740 1741
<programlisting>
archive_command = 'cp "%p" /mnt/server/archivedir/"%f"'
1742
archive_command = 'copy "%p" /mnt/server/archivedir/"%f"'  # Windows
1743
</programlisting>
T
Tom Lane 已提交
1744 1745 1746
       </para>
      </listitem>
     </varlistentry>
1747 1748 1749 1750 1751 1752
     
     </variablelist>
    </sect3>
   </sect2>

   <sect2 id="runtime-config-query">
1753
    <title>Query Planning</title>
1754 1755

    <sect3 id="runtime-config-query-enable">
1756
     <title>Planner Method Configuration</title>
1757

1758
      <para>
T
Tom Lane 已提交
1759
       These configuration parameters provide a crude method of
1760
       influencing the query plans chosen by the query optimizer. If
1761 1762 1763
       the default plan chosen by the optimizer for a particular query
       is not optimal, a temporary solution may be found by using one
       of these configuration parameters to force the optimizer to
T
Tom Lane 已提交
1764 1765 1766 1767
       choose a different plan.  Turning one of these settings off
       permanently is seldom a good idea, however.
       Better ways to improve the quality of the
       plans chosen by the optimizer include adjusting the <xref
1768
       linkend="runtime-config-query-constants"
1769 1770 1771 1772
       endterm="runtime-config-query-constants-title">, running <xref
       linkend="sql-analyze" endterm="sql-analyze-title"> more
       frequently, increasing the value of the <xref
       linkend="guc-default-statistics-target"> configuration parameter,
T
Tom Lane 已提交
1773 1774
       and increasing the amount of statistics collected for
       specific columns using <command>ALTER TABLE SET
1775
       STATISTICS</command>.
1776
      </para>
1777

1778
     <variablelist>
1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794
     <varlistentry id="guc-enable-bitmapscan" xreflabel="enable_bitmapscan">
      <term><varname>enable_bitmapscan</varname> (<type>boolean</type>)</term>
      <indexterm>
       <primary>bitmap scan</primary>
      </indexterm>
      <indexterm>
       <primary><varname>enable_bitmapscan</> configuration parameter</primary>
      </indexterm>
      <listitem>
       <para>
        Enables or disables the query planner's use of bitmap-scan plan
        types. The default is on.
       </para>
      </listitem>
     </varlistentry>

1795
     <varlistentry id="guc-enable-hashagg" xreflabel="enable_hashagg">
1796
      <term><varname>enable_hashagg</varname> (<type>boolean</type>)</term>
1797 1798 1799
      <indexterm>
       <primary><varname>enable_hashagg</> configuration parameter</primary>
      </indexterm>
1800 1801
      <listitem>
       <para>
1802
        Enables or disables the query planner's use of hashed
T
Tom Lane 已提交
1803
        aggregation plan types. The default is on.
1804 1805 1806
       </para>
      </listitem>
     </varlistentry>
1807

1808
     <varlistentry id="guc-enable-hashjoin" xreflabel="enable_hashjoin">
1809
      <term><varname>enable_hashjoin</varname> (<type>boolean</type>)</term>
1810 1811 1812
      <indexterm>
       <primary><varname>enable_hashjoin</> configuration parameter</primary>
      </indexterm>
1813 1814
      <listitem>
       <para>
1815
        Enables or disables the query planner's use of hash-join plan
T
Tom Lane 已提交
1816
        types. The default is on.
1817 1818 1819 1820
       </para>
      </listitem>
     </varlistentry>

1821
     <varlistentry id="guc-enable-indexscan" xreflabel="enable_indexscan">
1822
      <term><varname>enable_indexscan</varname> (<type>boolean</type>)</term>
1823 1824 1825
      <indexterm>
       <primary>index scan</primary>
      </indexterm>
1826 1827 1828
      <indexterm>
       <primary><varname>enable_indexscan</> configuration parameter</primary>
      </indexterm>
1829 1830
      <listitem>
       <para>
1831
        Enables or disables the query planner's use of index-scan plan
T
Tom Lane 已提交
1832
        types. The default is on.
1833 1834 1835 1836
       </para>
      </listitem>
     </varlistentry>

1837
     <varlistentry id="guc-enable-mergejoin" xreflabel="enable_mergejoin">
1838
      <term><varname>enable_mergejoin</varname> (<type>boolean</type>)</term>
1839 1840 1841
      <indexterm>
       <primary><varname>enable_mergejoin</> configuration parameter</primary>
      </indexterm>
1842 1843
      <listitem>
       <para>
1844
        Enables or disables the query planner's use of merge-join plan
T
Tom Lane 已提交
1845
        types. The default is on.
1846 1847 1848 1849
       </para>
      </listitem>
     </varlistentry>

1850
     <varlistentry id="guc-enable-nestloop" xreflabel="enable_nestloop">
1851
      <term><varname>enable_nestloop</varname> (<type>boolean</type>)</term>
1852 1853 1854
      <indexterm>
       <primary><varname>enable_nestloop</> configuration parameter</primary>
      </indexterm>
1855 1856
      <listitem>
       <para>
1857 1858 1859 1860
        Enables or disables the query planner's use of nested-loop join
        plans. It's not possible to suppress nested-loop joins entirely,
        but turning this variable off discourages the planner from using
        one if there are other methods available. The default is
T
Tom Lane 已提交
1861
        on.
1862 1863 1864 1865
       </para>
      </listitem>
     </varlistentry>

1866
     <varlistentry id="guc-enable-seqscan" xreflabel="enable_seqscan">
1867
      <term><varname>enable_seqscan</varname> (<type>boolean</type>)</term>
1868 1869 1870
      <indexterm>
       <primary>sequential scan</primary>
      </indexterm>
1871 1872 1873
      <indexterm>
       <primary><varname>enable_seqscan</> configuration parameter</primary>
      </indexterm>
B
Bruce Momjian 已提交
1874 1875
      <listitem>
       <para>
1876 1877 1878 1879
        Enables or disables the query planner's use of sequential scan
        plan types. It's not possible to suppress sequential scans
        entirely, but turning this variable off discourages the planner
        from using one if there are other methods available. The
T
Tom Lane 已提交
1880
        default is on.
B
Bruce Momjian 已提交
1881 1882 1883 1884
       </para>
      </listitem>
     </varlistentry>

1885
     <varlistentry id="guc-enable-sort" xreflabel="enable_sort">
1886
      <term><varname>enable_sort</varname> (<type>boolean</type>)</term>
1887 1888 1889
      <indexterm>
       <primary><varname>enable_sort</> configuration parameter</primary>
      </indexterm>
1890 1891
      <listitem>
       <para>
1892 1893 1894 1895
        Enables or disables the query planner's use of explicit sort
        steps. It's not possible to suppress explicit sorts entirely,
        but turning this variable off discourages the planner from
        using one if there are other methods available. The default
T
Tom Lane 已提交
1896
        is on.
1897
       </para>
1898 1899
      </listitem>
     </varlistentry>
1900

1901
     <varlistentry id="guc-enable-tidscan" xreflabel="enable_tidscan">
1902
      <term><varname>enable_tidscan</varname> (<type>boolean</type>)</term>
1903 1904 1905
      <indexterm>
       <primary><varname>enable_tidscan</> configuration parameter</primary>
      </indexterm>
1906
      <listitem>
1907
       <para>
1908
        Enables or disables the query planner's use of <acronym>TID</>
T
Tom Lane 已提交
1909
        scan plan types. The default is on.
1910 1911 1912
       </para>
      </listitem>
     </varlistentry>
1913 1914 1915 1916
     
     </variablelist>
     </sect3>
     <sect3 id="runtime-config-query-constants">
1917 1918 1919
     <title id="runtime-config-query-constants-title">
      Planner Cost Constants
     </title>
1920

1921 1922 1923 1924
   <note>
    <para>
     Unfortunately, there is no well-defined method for determining
     ideal values for the family of <quote>cost</quote> variables that
1925
     appear below. You are encouraged to experiment and share
1926 1927 1928 1929 1930 1931
     your findings.
    </para>
   </note>

     <variablelist>
     
1932
     <varlistentry id="guc-effective-cache-size" xreflabel="effective_cache_size">
1933
      <term><varname>effective_cache_size</varname> (<type>floating point</type>)</term>
1934 1935 1936
      <indexterm>
       <primary><varname>effective_cache_size</> configuration parameter</primary>
      </indexterm>
1937 1938
      <listitem>
       <para>
1939
        Sets the planner's assumption about the effective size of the
1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953
        disk cache that is available to a single index scan.  This is
        factored into estimates of the cost of using an index; a higher
        value makes it more likely index scans will be used, a lower
        value makes it more likely sequential scans will be used. When
        setting this parameter you should consider both
        <productname>PostgreSQL</productname>'s shared buffers and the
        portion of the kernel's disk cache that will be used for
        <productname>PostgreSQL</productname> data files.  Also, take into
        account the expected number of concurrent queries using different
        indexes, since they will have to share the available space.
        This parameter has no effect on the size of shared memory
        allocated by PostgreSQL, nor does it reserve kernel disk cache;
        it is used only for estimation purposes.
        The value is measured in disk pages, which are
1954
        normally 8192 bytes each. The default is 1000.
1955
       </para>
1956 1957
      </listitem>
     </varlistentry>
1958

1959
     <varlistentry id="guc-random-page-cost" xreflabel="random_page_cost">
1960
      <term><varname>random_page_cost</varname> (<type>floating point</type>)</term>
1961 1962 1963
      <indexterm>
       <primary><varname>random_page_cost</> configuration parameter</primary>
      </indexterm>
1964 1965
      <listitem>
       <para>
1966
        Sets the planner's estimate of the cost of a
1967 1968
        nonsequentially fetched disk page. This is measured as a
        multiple of the cost of a sequential page fetch. A higher
1969 1970 1971
        value makes it more likely a sequential scan will be used, a
        lower value makes it more likely an index scan will be
        used. The default is four.
1972
       </para>
1973 1974 1975
      </listitem>
     </varlistentry>

1976
     <varlistentry id="guc-cpu-tuple-cost" xreflabel="cpu_tuple_cost">
1977
      <term><varname>cpu_tuple_cost</varname> (<type>floating point</type>)</term>
1978 1979 1980
      <indexterm>
       <primary><varname>cpu_tuple_cost</> configuration parameter</primary>
      </indexterm>
1981 1982
      <listitem>
       <para>
1983
        Sets the planner's estimate of the cost of processing
1984
        each row during a query. This is measured as a fraction of
1985
        the cost of a sequential page fetch. The default is 0.01.
1986 1987 1988 1989
       </para>
      </listitem>
     </varlistentry>

1990
     <varlistentry id="guc-cpu-index-tuple-cost" xreflabel="cpu_index_tuple_cost">
1991
      <term><varname>cpu_index_tuple_cost</varname> (<type>floating point</type>)</term>
1992 1993 1994
      <indexterm>
       <primary><varname>cpu_index_tuple_cost</> configuration parameter</primary>
      </indexterm>
1995 1996
      <listitem>
       <para>
1997
        Sets the planner's estimate of the cost of processing
1998
        each index row during an index scan. This is measured as a
1999 2000
        fraction of the cost of a sequential page fetch. The default
        is 0.001.
2001 2002 2003 2004
       </para>
      </listitem>
     </varlistentry>
    
2005
     <varlistentry id="guc-cpu-operator-cost" xreflabel="cpu_operator_cost">
2006
      <term><varname>cpu_operator_cost</varname> (<type>floating point</type>)</term>
2007 2008 2009
      <indexterm>
       <primary><varname>cpu_operator_cost</> configuration parameter</primary>
      </indexterm>
2010 2011 2012 2013
      <listitem>
       <para>
        Sets the planner's estimate of the cost of processing each
        operator in a <literal>WHERE</> clause. This is measured as a fraction of
2014
        the cost of a sequential page fetch. The default is 0.0025.
2015 2016 2017 2018
       </para>
      </listitem>
     </varlistentry>

2019
     </variablelist>
2020

2021 2022
    </sect3>
     <sect3 id="runtime-config-query-geqo">
2023
     <title>Genetic Query Optimizer</title>
2024 2025 2026

     <variablelist>

2027
     <varlistentry id="guc-geqo" xreflabel="geqo">
2028 2029 2030 2031 2032 2033 2034
      <indexterm>
       <primary>genetic query optimization</primary>
      </indexterm>
      <indexterm>
       <primary>GEQO</primary>
       <see>genetic query optimization</see>
      </indexterm>
2035 2036 2037
      <indexterm>
       <primary><varname>geqo</> configuration parameter</primary>
      </indexterm>
2038
      <term><varname>geqo</varname> (<type>boolean</type>)</term>
2039 2040
      <listitem>
       <para>
2041
        Enables or disables genetic query optimization, which is an
2042 2043 2044 2045
        algorithm that attempts to do query planning without
        exhaustive searching. This is on by default. The
        <varname>geqo_threshold</varname> variable provides a more
        granular way to disable GEQO for certain classes of queries.
2046 2047 2048 2049
       </para>
      </listitem>
     </varlistentry>

2050
     <varlistentry id="guc-geqo-threshold" xreflabel="geqo_threshold">
2051
      <term><varname>geqo_threshold</varname> (<type>integer</type>)</term>
2052 2053 2054
      <indexterm>
       <primary><varname>geqo_threshold</> configuration parameter</primary>
      </indexterm>
2055 2056
      <listitem>
       <para>
2057 2058 2059
        Use genetic query optimization to plan queries with at least
        this many <literal>FROM</> items involved. (Note that an outer
        <literal>JOIN</> construct counts as only one <literal>FROM</>
2060
        item.) The default is 12. For simpler queries it is usually best
2061 2062
        to use the deterministic, exhaustive planner, but for queries with
        many tables the deterministic planner takes too long.
2063 2064 2065 2066
       </para>
      </listitem>
     </varlistentry>

2067 2068 2069
     <varlistentry id="guc-geqo-effort" xreflabel="geqo_effort">
      <term><varname>geqo_effort</varname>
      (<type>integer</type>)</term>
2070 2071 2072
      <indexterm>
       <primary><varname>geqo_effort</> configuration parameter</primary>
      </indexterm>
2073 2074
      <listitem>
       <para>
P
Peter Eisentraut 已提交
2075
        Controls the trade off between planning time and query plan
2076 2077 2078
        efficiency in GEQO. This variable must be an integer in the
        range from 1 to 10. The default value is 5. Larger values
        increase the time spent doing query planning, but also
P
Peter Eisentraut 已提交
2079
        increase the likelihood that an efficient query plan will be
2080
        chosen.
2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093
       </para>

       <para>
        <varname>geqo_effort</varname> doesn't actually do anything
        directly; it is only used to compute the default values for
        the other variables that influence GEQO behavior (described
        below). If you prefer, you can set the other parameters by
        hand instead.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry id="guc-geqo-pool-size" xreflabel="geqo_pool_size">
2094
      <term><varname>geqo_pool_size</varname> (<type>integer</type>)</term>
2095 2096 2097
      <indexterm>
       <primary><varname>geqo_pool_size</> configuration parameter</primary>
      </indexterm>
2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110
      <listitem>
       <para>
        Controls the pool size used by GEQO. The pool size is the
        number of individuals in the genetic population.  It must be
        at least two, and useful values are typically 100 to 1000.  If
        it is set to zero (the default setting) then a suitable
        default is chosen based on <varname>geqo_effort</varname> and
        the number of tables in the query.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry id="guc-geqo-generations" xreflabel="geqo_generations">
2111
      <term><varname>geqo_generations</varname> (<type>integer</type>)</term>
2112 2113 2114
      <indexterm>
       <primary><varname>geqo_generations</> configuration parameter</primary>
      </indexterm>
2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127
      <listitem>
       <para>
        Controls the number of generations used by GEQO.  Generations
        specifies the number of iterations of the algorithm.  It must
        be at least one, and useful values are in the same range as
        the pool size.  If it is set to zero (the default setting)
        then a suitable default is chosen based on
        <varname>geqo_pool_size</varname>.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry id="guc-geqo-selection-bias" xreflabel="geqo_selection_bias">
2128
      <term><varname>geqo_selection_bias</varname> (<type>floating point</type>)</term>
2129 2130 2131
      <indexterm>
       <primary><varname>geqo_selection_bias</> configuration parameter</primary>
      </indexterm>
2132 2133
      <listitem>
       <para>
2134 2135 2136
        Controls the selection bias used by GEQO. The selection bias
        is the selective pressure within the population. Values can be
        from 1.50 to 2.00; the latter is the default.
2137 2138 2139
       </para>
      </listitem>
     </varlistentry>
2140 2141 2142 2143
     
     </variablelist>
    </sect3>
     <sect3 id="runtime-config-query-other">
2144
     <title>Other Planner Options</title>
2145 2146

     <variablelist>
2147

2148
     <varlistentry id="guc-default-statistics-target" xreflabel="default_statistics_target">
2149
      <term><varname>default_statistics_target</varname> (<type>integer</type>)</term>
2150 2151 2152
      <indexterm>
       <primary><varname>default_statistics_target</> configuration parameter</primary>
      </indexterm>
2153 2154
      <listitem>
       <para>
2155 2156 2157 2158 2159 2160 2161
        Sets the default statistics target for table columns that have
        not had a column-specific target set via <command>ALTER TABLE
        SET STATISTICS</>.  Larger values increase the time needed to
        do <command>ANALYZE</>, but may improve the quality of the
        planner's estimates. The default is 10. For more information
        on the use of statistics by the <productname>PostgreSQL</>
        query planner, refer to <xref linkend="planner-stats">.
2162 2163 2164
       </para>
      </listitem>
     </varlistentry>
2165

2166
     <varlistentry id="guc-from-collapse-limit" xreflabel="from_collapse_limit">
2167
      <term><varname>from_collapse_limit</varname> (<type>integer</type>)</term>
2168 2169 2170
      <indexterm>
       <primary><varname>from_collapse_limit</> configuration parameter</primary>
      </indexterm>
2171 2172
      <listitem>
       <para>
2173 2174 2175 2176
        The planner will merge sub-queries into upper queries if the
        resulting <literal>FROM</literal> list would have no more than
        this many items.  Smaller values reduce planning time but may
        yield inferior query plans.  The default is 8.  It is usually
2177
        wise to keep this less than <xref linkend="guc-geqo-threshold">.
2178 2179 2180 2181
       </para>
      </listitem>
     </varlistentry>

2182
     <varlistentry id="guc-join-collapse-limit" xreflabel="join_collapse_limit">
2183
      <term><varname>join_collapse_limit</varname> (<type>integer</type>)</term>
2184 2185 2186
      <indexterm>
       <primary><varname>join_collapse_limit</> configuration parameter</primary>
      </indexterm>
2187 2188
      <listitem>
       <para>
2189 2190 2191 2192 2193 2194 2195
        The planner will rewrite explicit inner <literal>JOIN</>
        constructs into lists of <literal>FROM</> items whenever a
        list of no more than this many items in total would
        result. Prior to <productname>PostgreSQL</> 7.4, joins
        specified via the <literal>JOIN</literal> construct would
        never be reordered by the query planner. The query planner has
        subsequently been improved so that inner joins written in this
2196
        form can be reordered; this configuration parameter controls
2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210
        the extent to which this reordering is performed.
        <note>
         <para>
          At present, the order of outer joins specified via the
          <literal>JOIN</> construct is never adjusted by the query
          planner; therefore, <varname>join_collapse_limit</> has no
          effect on this behavior. The planner may be improved to
          reorder some classes of outer joins in a future release of
          <productname>PostgreSQL</productname>.
         </para>
        </note>
       </para>

       <para>
2211
        By default, this variable is set the same as
2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230
        <varname>from_collapse_limit</varname>, which is appropriate
        for most uses. Setting it to 1 prevents any reordering of
        inner <literal>JOIN</>s. Thus, the explicit join order
        specified in the query will be the actual order in which the
        relations are joined. The query planner does not always choose
        the optimal join order; advanced users may elect to
        temporarily set this variable to 1, and then specify the join
        order they desire explicitly. Another consequence of setting
        this variable to 1 is that the query planner will behave more
        like the <productname>PostgreSQL</productname> 7.3 query
        planner, which some users might find useful for backward
        compatibility reasons.
       </para>

       <para>
        Setting this variable to a value between 1 and
        <varname>from_collapse_limit</varname> might be useful to
        trade off planning time against the quality of the chosen plan
        (higher values produce better plans).
2231 2232 2233
       </para>
      </listitem>
     </varlistentry>
2234 2235 2236 2237 2238 2239
     
     </variablelist>
    </sect3>
   </sect2>

   <sect2 id="runtime-config-logging">
2240
    <title>Error Reporting and Logging</title>
2241

P
Peter Eisentraut 已提交
2242 2243 2244 2245
    <indexterm zone="runtime-config-logging">
     <primary>server log</primary>
    </indexterm>

2246 2247
    <sect3 id="runtime-config-logging-where">
     <title>Where to log</title>
P
Peter Eisentraut 已提交
2248

2249 2250
     <indexterm zone="runtime-config-logging-where">
      <primary>where to log</primary>
P
Peter Eisentraut 已提交
2251 2252
     </indexterm>

2253
     <variablelist>
2254

2255 2256
     <varlistentry id="guc-log-destination" xreflabel="log_destination">
      <term><varname>log_destination</varname> (<type>string</type>)</term>
2257 2258 2259
      <indexterm>
       <primary><varname>log_destination</> configuration parameter</primary>
      </indexterm>
2260 2261
      <listitem>
       <para>
2262 2263 2264 2265 2266 2267 2268 2269
        <productname>PostgreSQL</productname> supports several methods
         for logging server messages, including
         <systemitem>stderr</systemitem> and
         <systemitem>syslog</systemitem>. On Windows, 
         <systemitem>eventlog</systemitem> is also supported. Set this
         option to a list of desired log destinations separated by
         commas. The default is to log to <systemitem>stderr</systemitem> 
         only.
2270 2271
         This option can only be set at server start or in the
         <filename>postgresql.conf</filename> configuration file.
2272
       </para>
2273 2274 2275
      </listitem>
     </varlistentry>

2276 2277
     <varlistentry id="guc-redirect-stderr" xreflabel="redirect_stderr">
      <term><varname>redirect_stderr</varname> (<type>boolean</type>)</term>
2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292
      <indexterm>
       <primary><varname>redirect_stderr</> configuration parameter</primary>
      </indexterm>
      <listitem>
       <para>
         This option allows messages sent to <application>stderr</> to be
         captured and redirected into log files.
         This option, in combination with logging to <application>stderr</>,
         is often more useful than
         logging to <application>syslog</>, since some types of messages
         may not appear in <application>syslog</> output (a common example
         is dynamic-linker failure messages).
         This option can only be set at server start.
       </para>
      </listitem>
2293 2294 2295 2296
     </varlistentry>

     <varlistentry id="guc-log-directory" xreflabel="log_directory">
      <term><varname>log_directory</varname> (<type>string</type>)</term>
2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309
      <indexterm>
       <primary><varname>log_directory</> configuration parameter</primary>
      </indexterm>
      <listitem>
       <para>
        When <varname>redirect_stderr</> is enabled, this option
        determines the directory in which log files will be created.
        It may be specified as an absolute path, or relative to the
        cluster data directory.
        This option can only be set at server start or in the
        <filename>postgresql.conf</filename> configuration file.
       </para>
      </listitem>
2310 2311
     </varlistentry>

2312 2313
     <varlistentry id="guc-log-filename" xreflabel="log_filename">
      <term><varname>log_filename</varname> (<type>string</type>)</term>
2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333
      <indexterm>
       <primary><varname>log_filename</> configuration parameter</primary>
      </indexterm>
      <listitem>
       <para>
        When <varname>redirect_stderr</varname> is enabled, this option
        sets the file names of the created log files.  The value
        is treated as a <systemitem>strftime</systemitem> pattern,
        so <literal>%</literal>-escapes
        can be used to specify time-varying file names.
        If no <literal>%</literal>-escapes are present,
        <productname>PostgreSQL</productname> will
        append the epoch of the new log file's open time.  For example,
        if <varname>log_filename</varname> were <literal>server_log</literal>, then the
        chosen file name would be <literal>server_log.1093827753</literal>
        for a log starting at Sun Aug 29 19:02:33 2004 MST.
        This option can only be set at server start or in the
        <filename>postgresql.conf</filename> configuration file.
       </para>
      </listitem>
2334 2335 2336 2337
     </varlistentry>

     <varlistentry id="guc-log-rotation-age" xreflabel="log_rotation_age">
      <term><varname>log_rotation_age</varname> (<type>integer</type>)</term>
2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351
      <indexterm>
       <primary><varname>log_rotation_age</> configuration parameter</primary>
      </indexterm>
      <listitem>
       <para>
        When <varname>redirect_stderr</varname> is enabled, this option
        determines the maximum lifetime of an individual log file.
        After this many minutes have elapsed, a new log file will
        be created.  Set to zero to disable time-based creation of
        new log files.
        This option can only be set at server start or in the
        <filename>postgresql.conf</filename> configuration file.
       </para>
      </listitem>
2352 2353 2354 2355
     </varlistentry>

     <varlistentry id="guc-log-rotation-size" xreflabel="log_rotation_size">
      <term><varname>log_rotation_size</varname> (<type>integer</type>)</term>
2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369
      <indexterm>
       <primary><varname>log_rotation_size</> configuration parameter</primary>
      </indexterm>
      <listitem>
       <para>
        When <varname>redirect_stderr</varname> is enabled, this option
        determines the maximum size of an individual log file.
        After this many kilobytes have been emitted into a log file,
        a new log file will be created.  Set to zero to disable size-based
        creation of new log files.
        This option can only be set at server start or in the
        <filename>postgresql.conf</filename> configuration file.
       </para>
      </listitem>
2370 2371
     </varlistentry>

2372 2373
     <varlistentry id="guc-log-truncate-on-rotation" xreflabel="log_truncate_on_rotation">
      <term><varname>log_truncate_on_rotation</varname> (<type>boolean</type>)</term>
2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411
      <indexterm>
       <primary><varname>log_truncate_on_rotation</> configuration parameter</primary>
      </indexterm>
      <listitem>
       <para>
        When <varname>redirect_stderr</varname> is enabled, this option will cause
        <productname>PostgreSQL</productname> to truncate (overwrite),
        rather than append to, any existing log file of the same name.
        However, truncation will occur only when a new file is being opened
        due to time-based rotation, not during server startup or size-based
        rotation.  When false, pre-existing files will be appended to in
        all cases.  For example, using this option in combination with
        a <varname>log_filename</varname> like <literal>postgresql-%H.log</literal>
        would result in generating twenty-four hourly log files and then
        cyclically overwriting them.
        This option can only be set at server start or in the
        <filename>postgresql.conf</filename> configuration file.
       </para>
       <para>
        Example:  To keep 7 days of logs, one log file per day named
        <literal>server_log.Mon</literal>, <literal>server_log.Tue</literal>, 
        etc, and automatically overwrite last week's log with this week's log,
        set <varname>log_filename</varname> to <literal>server_log.%a</literal>, 
        <varname>log_truncate_on_rotation</varname> to <literal>true</literal>, and 
        <varname>log_rotation_age</varname> to <literal>1440</literal>.
       </para>
       <para>
        Example: To keep 24 hours of logs, one log file per hour, but 
        also rotate sooner if the log file size exceeds 1GB, set 
        <varname>log_filename</varname> to <literal>server_log.%H%M</literal>, 
        <varname>log_truncate_on_rotation</varname> to <literal>true</literal>, 
        <varname>log_rotation_age</varname> to <literal>60</literal>, and 
        <varname>log_rotation_size</varname> to <literal>1000000</literal>.
        Including <literal>%M</> in <varname>log_filename</varname> allows
        any size-driven rotations that may occur to select a filename
        different from the hour's initial filename.
       </para>
      </listitem>
2412 2413
     </varlistentry>

2414
     <varlistentry id="guc-syslog-facility" xreflabel="syslog_facility">
2415
      <term><varname>syslog_facility</varname> (<type>string</type>)</term>
2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432
      <indexterm>
       <primary><varname>syslog_facility</> configuration parameter</primary>
      </indexterm>
      <listitem>
       <para>
        When logging to <application>syslog</> is enabled, this option
        determines the <application>syslog</application>
        <quote>facility</quote> to be used.  You may choose
        from <literal>LOCAL0</>, <literal>LOCAL1</>,
        <literal>LOCAL2</>, <literal>LOCAL3</>, <literal>LOCAL4</>,
        <literal>LOCAL5</>, <literal>LOCAL6</>, <literal>LOCAL7</>;
        the default is <literal>LOCAL0</>. See also the
        documentation of your system's
        <application>syslog</application> daemon.
        This option can only be set at server start.
       </para>
      </listitem>
2433 2434
     </varlistentry>
     
2435
     <varlistentry id="guc-syslog-ident" xreflabel="syslog_ident">
2436
      <term><varname>syslog_ident</varname> (<type>string</type>)</term>
2437 2438 2439
      <indexterm>
       <primary><varname>syslog_identity</> configuration parameter</primary>
      </indexterm>
2440 2441
       <listitem>
        <para>
2442
         When logging to <application>syslog</> is enabled, this option
2443
         determines the program name used to identify
2444
         <productname>PostgreSQL</productname> messages in
2445
         <application>syslog</application> logs. The default is
2446
         <literal>postgres</literal>.
2447
          This option can only be set at server start.
2448 2449 2450
        </para>
       </listitem>
      </varlistentry>
2451 2452 2453 2454 2455 2456 2457 2458
      
      </variablelist>
    </sect3>
     <sect3 id="runtime-config-logging-when">
     <title>When To Log</title>

     <variablelist>

2459
     <varlistentry id="guc-client-min-messages" xreflabel="client_min_messages">
2460
      <term><varname>client_min_messages</varname> (<type>string</type>)</term>
2461 2462 2463
      <indexterm>
       <primary><varname>client_min_messages</> configuration parameter</primary>
      </indexterm>
2464 2465 2466 2467 2468 2469 2470 2471 2472 2473
      <listitem>
       <para>
        Controls which message levels are sent to the client.
        Valid values are <literal>DEBUG5</>,
        <literal>DEBUG4</>, <literal>DEBUG3</>, <literal>DEBUG2</>,
        <literal>DEBUG1</>, <literal>LOG</>, <literal>NOTICE</>,
        <literal>WARNING</>, and <literal>ERROR</>.  Each level
        includes all the levels that follow it.  The later the level,
        the fewer messages are sent.  The default is
        <literal>NOTICE</>.  Note that <literal>LOG</> has a different
2474
        rank here than in <varname>log_min_messages</>.
2475 2476 2477 2478
       </para>
      </listitem>
     </varlistentry>

2479
     <varlistentry id="guc-log-min-messages" xreflabel="log_min_messages">
2480
      <term><varname>log_min_messages</varname> (<type>string</type>)</term>
2481 2482 2483
      <indexterm>
       <primary><varname>log_min_messages</> configuration parameter</primary>
      </indexterm>
2484 2485
      <listitem>
       <para>
2486
        Controls which message levels are written to the server log.
P
Peter Eisentraut 已提交
2487
        Valid values are <literal>DEBUG5</>, <literal>DEBUG4</>,
2488 2489 2490 2491 2492 2493 2494
        <literal>DEBUG3</>, <literal>DEBUG2</>, <literal>DEBUG1</>,
        <literal>INFO</>, <literal>NOTICE</>, <literal>WARNING</>,
        <literal>ERROR</>, <literal>LOG</>, <literal>FATAL</>, and
        <literal>PANIC</>.  Each level includes all the levels that
        follow it.  The later the level, the fewer messages are sent
        to the log.  The default is <literal>NOTICE</>.  Note that
        <literal>LOG</> has a different rank here than in
2495
        <varname>client_min_messages</>.
2496
        Only superusers can change this setting.
2497 2498 2499 2500
       </para>
      </listitem>
     </varlistentry>

2501
     <varlistentry id="guc-log-error-verbosity" xreflabel="log_error_verbosity">
2502
      <term><varname>log_error_verbosity</varname> (<type>string</type>)</term>
2503 2504 2505
      <indexterm>
       <primary><varname>log_error_verbosity</> configuration parameter</primary>
      </indexterm>
2506 2507
      <listitem>
       <para>
2508
        Controls the amount of detail written in the server log for each
P
Peter Eisentraut 已提交
2509 2510 2511
        message that is logged.  Valid values are <literal>TERSE</>,
        <literal>DEFAULT</>, and <literal>VERBOSE</>, each adding more
        fields to displayed messages.
T
Tom Lane 已提交
2512
        Only superusers can change this setting.
2513 2514 2515 2516
       </para>
      </listitem>
     </varlistentry>

2517
     <varlistentry id="guc-log-min-error-statement" xreflabel="log_min_error_statement">
2518
      <term><varname>log_min_error_statement</varname> (<type>string</type>)</term>
2519 2520 2521
      <indexterm>
       <primary><varname>log_min_error_statement</> configuration parameter</primary>
      </indexterm>
2522 2523 2524 2525
      <listitem>
       <para>
        Controls whether or not the SQL statement that causes an error
        condition will also be recorded in the server log. All SQL
2526 2527
        statements that cause an error of the specified level or
        higher are logged.  The default is
2528
        <literal>PANIC</literal> (effectively turning this feature
2529
        off for normal use). Valid values are <literal>DEBUG5</literal>,
2530 2531 2532 2533 2534 2535 2536 2537 2538
        <literal>DEBUG4</literal>, <literal>DEBUG3</literal>,
        <literal>DEBUG2</literal>, <literal>DEBUG1</literal>,
        <literal>INFO</literal>, <literal>NOTICE</literal>,
        <literal>WARNING</literal>, <literal>ERROR</literal>,
        <literal>FATAL</literal>, and <literal>PANIC</literal>.  For
        example, if you set this to <literal>ERROR</literal> then all
        SQL statements causing errors, fatal errors, or panics will be
        logged. Enabling this option can be helpful in tracking down
        the source of any errors that appear in the server log.
2539
        Only superusers can change this setting.
2540 2541 2542 2543
       </para>
      </listitem>
     </varlistentry>
     
2544
     <varlistentry id="guc-log-min-duration-statement" xreflabel="log_min_duration_statement">
2545
      <term><varname>log_min_duration_statement</varname> (<type>integer</type>)</term>
2546 2547 2548
      <indexterm>
       <primary><varname>log_min_duration_statement</> configuration parameter</primary>
      </indexterm>
2549 2550 2551
       <listitem>
        <para>
         Sets a minimum statement execution time (in milliseconds)
2552 2553
         that causes a statement to be logged.  All SQL statements
         that run for the time specified or longer will be logged with
2554 2555
         their duration.  Setting this to zero will print
         all queries and their durations.  Minus-one (the default)
2556
         disables the feature.  For example, if you set it to 
2557 2558 2559
         <literal>250</literal> then all SQL statements that run 250ms 
         or longer will be logged.  Enabling this option can be
         useful in tracking down unoptimized queries in your applications.
2560
         Only superusers can change this setting.
2561 2562 2563
        </para>
       </listitem>
      </varlistentry>
2564

2565
     <varlistentry id="guc-silent-mode" xreflabel="silent_mode">
2566
      <term><varname>silent_mode</varname> (<type>boolean</type>)</term>
2567 2568 2569
      <indexterm>
       <primary><varname>silent_mode</> configuration parameter</primary>
      </indexterm>
2570 2571
      <listitem>
       <para>
2572
        Runs the server silently. If this option is set, the server
2573
        will automatically run in background and any controlling
2574 2575 2576
        terminals are disassociated (same effect as
        <command>postmaster</>'s <option>-S</option> option).
        The server's standard output and standard error are redirected
2577 2578 2579
        to <literal>/dev/null</>, so any messages sent to them will be lost.
        Unless <application>syslog</> logging is selected or
        <varname>redirect_stderr</> is enabled, using this option
2580
        is discouraged because it makes it impossible to see error messages.
2581 2582 2583 2584 2585
       </para>
      </listitem>
     </varlistentry>

     </variablelist>
2586 2587 2588

       <para>
        Here is a list of the various message severity levels used in
P
Peter Eisentraut 已提交
2589
        these settings:
2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634
        <variablelist>
         <varlistentry>
          <term><literal>DEBUG[1-5]</literal></term>
          <listitem>
           <para>
            Provides information for use by developers.
           </para>
          </listitem>
         </varlistentry>

         <varlistentry>
          <term><literal>INFO</literal></term>
          <listitem>
           <para>
            Provides information implicitly requested by the user,
            e.g., during <command>VACUUM VERBOSE</>.
           </para>
          </listitem>
         </varlistentry>

         <varlistentry>
          <term><literal>NOTICE</literal></term>
          <listitem>
           <para>
            Provides information that may be helpful to users, e.g.,
            truncation of long identifiers and the creation of indexes as part
            of primary keys.
           </para>
          </listitem>
         </varlistentry>

         <varlistentry>
          <term><literal>WARNING</literal></term>
          <listitem>
           <para>
            Provides warnings to the user, e.g., <command>COMMIT</>
            outside a transaction block.
           </para>
          </listitem>
         </varlistentry>

         <varlistentry>
          <term><literal>ERROR</literal></term>
          <listitem>
           <para>
T
Tom Lane 已提交
2635
            Reports an error that caused the current command to abort.
2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669
           </para>
          </listitem>
         </varlistentry>

         <varlistentry>
          <term><literal>LOG</literal></term>
          <listitem>
           <para>
            Reports information of interest to administrators, e.g.,
            checkpoint activity.
           </para>
          </listitem>
         </varlistentry>

         <varlistentry>
          <term><literal>FATAL</literal></term>
          <listitem>
           <para>
            Reports an error that caused the current session to abort.
           </para>
          </listitem>
         </varlistentry>

         <varlistentry>
          <term><literal>PANIC</literal></term>
          <listitem>
           <para>
            Reports an error that caused all sessions to abort.
           </para>
          </listitem>
         </varlistentry>
        </variablelist>
       </para>

2670 2671 2672
    </sect3>
     <sect3 id="runtime-config-logging-what">
     <title>What To Log</title>
2673

2674
     <variablelist>
2675

2676
     <varlistentry>
2677 2678 2679 2680
      <term><varname>debug_print_parse</varname> (<type>boolean</type>)</term>
      <term><varname>debug_print_rewritten</varname> (<type>boolean</type>)</term>
      <term><varname>debug_print_plan</varname> (<type>boolean</type>)</term>
      <term><varname>debug_pretty_print</varname> (<type>boolean</type>)</term>
2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692
      <indexterm>
       <primary><varname>debug_print_parse</> configuration parameter</primary>
      </indexterm>
      <indexterm>
       <primary><varname>debug_print_rewritten</> configuration parameter</primary>
      </indexterm>
      <indexterm>
       <primary><varname>debug_print_plan</> configuration parameter</primary>
      </indexterm>
      <indexterm>
       <primary><varname>debug_pretty_print</> configuration parameter</primary>
      </indexterm>
2693 2694
      <listitem>
       <para>
T
Tom Lane 已提交
2695 2696
        These options enable various debugging output to be emitted.
        For each executed query, they print
2697 2698 2699 2700 2701
        the resulting parse tree, the query rewriter output, or the
        execution plan.  <varname>debug_pretty_print</varname> indents
        these displays to produce a more readable but much longer
        output format.  <varname>client_min_messages</varname> or
        <varname>log_min_messages</varname> must be
T
Tom Lane 已提交
2702 2703 2704
        <literal>DEBUG1</literal> or lower to actually send this output
        to the client or the server log, respectively.
        These options are off by default.
2705
       </para>
2706 2707
      </listitem>
     </varlistentry>
2708

2709
     <varlistentry id="guc-log-connections" xreflabel="log_connections">
2710
      <term><varname>log_connections</varname> (<type>boolean</type>)</term>
2711 2712 2713
      <indexterm>
       <primary><varname>log_connections</> configuration parameter</primary>
      </indexterm>
2714 2715
      <listitem>
       <para>
T
Tom Lane 已提交
2716
        This outputs a line to the server log detailing each successful
2717 2718 2719 2720 2721 2722 2723
        connection. This is off by default, although it is probably very
        useful. This option can only be set at server start or in the
        <filename>postgresql.conf</filename> configuration file.
       </para>
      </listitem>
     </varlistentry>

2724
     <varlistentry id="guc-log-disconnections" xreflabel="log_disconnections">
2725
      <term><varname>log_disconnections</varname> (<type>boolean</type>)</term>
2726 2727 2728
      <indexterm>
       <primary><varname>log_disconnections</> configuration parameter</primary>
      </indexterm>
2729 2730
      <listitem>
       <para>
T
Tom Lane 已提交
2731
        This outputs a line in the server log similar to
2732 2733 2734 2735
        <varname>log_connections</varname> but at session termination,
        and includes the duration of the session.  This is off by
        default. This option can only be set at server start or in the
        <filename>postgresql.conf</filename> configuration file.
2736 2737 2738 2739 2740
       </para>
      </listitem>
     </varlistentry>


2741
     <varlistentry id="guc-log-duration" xreflabel="log_duration">
2742
      <term><varname>log_duration</varname> (<type>boolean</type>)</term>
2743 2744 2745
      <indexterm>
       <primary><varname>log_duration</> configuration parameter</primary>
      </indexterm>
2746 2747
      <listitem>
       <para>
2748 2749 2750 2751
        Causes the duration of every completed statement which satisfies
        <varname>log_statement</> to be logged.  When using this option, 
        if you are not using <application>syslog</>, it is recommended 
        that you log the PID or session ID using <varname>log_line_prefix</> 
2752
        so that you can link the statement to the 
2753
        duration using the process ID or session ID. The default is off.  
2754
        Only superusers can change this setting.
2755 2756 2757 2758
       </para>
      </listitem>
     </varlistentry>
     
2759
     <varlistentry id="guc-log-line-prefix" xreflabel="log_line_prefix">
B
Add:  
Bruce Momjian 已提交
2760
      <term><varname>log_line_prefix</varname> (<type>string</type>)</term>
2761 2762 2763
      <indexterm>
       <primary><varname>log_line_prefix</> configuration parameter</primary>
      </indexterm>
B
Add:  
Bruce Momjian 已提交
2764 2765
      <listitem>
       <para>
2766 2767 2768 2769 2770 2771 2772
         This is a <function>printf</>-style string that is output at the
         beginning of each log line. The default is an empty string.
         Each recognized escape is replaced as outlined 
         below - anything else that looks like an escape is ignored. Other
         characters are copied straight to the log line. Some escapes are
         only recognised by session processes, and do not apply to
         background processes such as the postmaster. <application>Syslog</>
2773
         produces its own 
P
Peter Eisentraut 已提交
2774
         time stamp and process ID information, so you probably do not want to
2775 2776
         use those escapes if you are using <application>syslog</>.
         This option can only be set at server start or in the
2777 2778
         <filename>postgresql.conf</filename> configuration file.

2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790
         <informaltable>
          <tgroup cols="3">
           <thead>
            <row>
             <entry>Escape</entry>
             <entry>Effect</entry>
             <entry>Session only</entry>
             </row>
            </thead>
           <tbody>
            <row>
             <entry><literal>%u</literal></entry>
P
Peter Eisentraut 已提交
2791 2792
             <entry>User name</entry>
             <entry>yes</entry>
2793 2794 2795
            </row>
            <row>
             <entry><literal>%d</literal></entry>
P
Peter Eisentraut 已提交
2796 2797
             <entry>Database name</entry>
             <entry>yes</entry>
2798 2799 2800
            </row>
            <row>
             <entry><literal>%r</literal></entry>
P
Peter Eisentraut 已提交
2801 2802
             <entry>Remote host name or IP address, and remote port</entry>
             <entry>yes</entry>
2803 2804 2805 2806
            </row>
            <row>
             <entry><literal>%p</literal></entry>
             <entry>Process ID</entry>
P
Peter Eisentraut 已提交
2807
             <entry>no</entry>
2808 2809 2810
            </row>
            <row>
             <entry><literal>%t</literal></entry>
P
Peter Eisentraut 已提交
2811 2812
             <entry>Time stamp</entry>
             <entry>no</entry>
2813 2814 2815
            </row>
            <row>
             <entry><literal>%i</literal></entry>
P
Peter Eisentraut 已提交
2816 2817
             <entry>Command tag: This is the command that generated the log line.</entry>
             <entry>yes</entry>
2818 2819 2820
            </row>
            <row>
             <entry><literal>%c</literal></entry>
P
Peter Eisentraut 已提交
2821
             <entry>Session ID: A unique identifier for each session.
2822
             It is 2 4-byte hexadecimal numbers (without leading zeros) 
2823
             separated by a dot. The numbers
P
Peter Eisentraut 已提交
2824
             are the session start time and the process ID, so this can also
2825
             be used as a space saving way of printing these items.</entry>
P
Peter Eisentraut 已提交
2826
             <entry>yes</entry>
2827 2828 2829
            </row>
            <row>
             <entry><literal>%l</literal></entry>
P
Peter Eisentraut 已提交
2830 2831
             <entry>Number of the log line for each process, starting at 1</entry>
             <entry>no</entry>
2832 2833 2834
            </row>
            <row>
             <entry><literal>%s</literal></entry>
P
Peter Eisentraut 已提交
2835 2836
             <entry>Session start time stamp</entry>
             <entry>yes</entry>
2837 2838 2839
            </row>
            <row>
             <entry><literal>%x</literal></entry>
2840
             <entry>Transaction ID</entry>
P
Peter Eisentraut 已提交
2841
             <entry>yes</entry>
2842 2843 2844
            </row>
            <row>
             <entry><literal>%q</literal></entry>
2845 2846 2847
             <entry>Does not produce any output, but tells non-session
             processes to stop at this point in the string. Ignored by
             session processes.</entry>
P
Peter Eisentraut 已提交
2848
             <entry>no</entry>
2849 2850 2851 2852
            </row>
            <row>
             <entry><literal>%%</literal></entry>
             <entry>Literal <literal>%</></entry>
P
Peter Eisentraut 已提交
2853
             <entry>no</entry>
2854 2855 2856 2857
            </row>
           </tbody>
          </tgroup>
         </informaltable>
B
Add:  
Bruce Momjian 已提交
2858 2859 2860 2861
       </para>
      </listitem>
     </varlistentry>

2862
     <varlistentry id="guc-log-statement" xreflabel="log_statement">
2863
      <term><varname>log_statement</varname> (<type>string</type>)</term>
2864 2865 2866
      <indexterm>
       <primary><varname>log_statement</> configuration parameter</primary>
      </indexterm>
2867 2868
      <listitem>
       <para>
2869
        Controls which SQL statements are logged. Valid values are
2870 2871
        <literal>none</>, <literal>ddl</>, <literal>mod</>, and
        <literal>all</>. <literal>ddl</> logs all data definition
2872 2873 2874 2875 2876
        commands like <literal>CREATE</>, <literal>ALTER</>, and
        <literal>DROP</> commands. <literal>mod</> logs all
        <literal>ddl</> statements, plus <literal>INSERT</>,
        <literal>UPDATE</>, <literal>DELETE</>, <literal>TRUNCATE</>,
        and <literal>COPY FROM</>. <literal>PREPARE</> and
2877 2878
        <literal>EXPLAIN ANALYZE</> statements are also logged if their
        contained command is of an appropriate type.
2879 2880
       </para>
       <para>
2881 2882
        The default is <literal>none</>. Only superusers can change this
        setting.
2883
       </para>
2884 2885 2886

       <note>
        <para>
2887
         The <command>EXECUTE</command> statement is not considered a
2888 2889 2890
         <literal>ddl</> or <literal>mod</> statement.  When it is logged, 
         only the name of the prepared statement is reported, not the
         actual prepared statement.
2891 2892 2893
        </para>

        <para>
2894 2895 2896
         When a function is defined in the
         <application>PL/pgSQL</application>server-side language, any queries
         executed by the function will only be logged the first time that the
2897
         function is invoked in a particular session. This is because
2898
         <application>PL/pgSQL</application> keeps a cache of the
2899 2900 2901
         query plans produced for the SQL statements in the function.
        </para>
       </note>
2902 2903 2904
      </listitem>
     </varlistentry>

2905
     <varlistentry id="guc-log-hostname" xreflabel="log_hostname">
2906
      <term><varname>log_hostname</varname> (<type>boolean</type>)</term>
2907 2908 2909
      <indexterm>
       <primary><varname>log_hostname</> configuration parameter</primary>
      </indexterm>
2910 2911
      <listitem>
       <para>
T
Tom Lane 已提交
2912 2913 2914 2915 2916 2917
        By default, connection log messages only show the IP address of the
        connecting host. Turning on this option causes logging of the
        host name as well.  Note that depending on your host name resolution
        setup this might impose a non-negligible performance penalty. This
        option can only be set at server start or in the
        <filename>postgresql.conf</filename> file.
2918 2919 2920 2921
       </para>
      </listitem>
     </varlistentry>

2922 2923 2924 2925
     </variablelist>
    </sect3>
   </sect2>

2926 2927 2928 2929 2930 2931 2932 2933
   <sect2 id="runtime-config-statistics">
    <title>Runtime Statistics</title>

    <sect3 id="runtime-config-statistics-monitor">
     <title>Statistics Monitoring</title>
     <variablelist>

     <varlistentry>
2934 2935 2936 2937
      <term><varname>log_statement_stats</varname> (<type>boolean</type>)</term>
      <term><varname>log_parser_stats</varname> (<type>boolean</type>)</term>
      <term><varname>log_planner_stats</varname> (<type>boolean</type>)</term>
      <term><varname>log_executor_stats</varname> (<type>boolean</type>)</term>
2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949
      <indexterm>
       <primary><varname>log_statement_stats</> configuration parameter</primary>
      </indexterm>
      <indexterm>
       <primary><varname>log_parser_stats</> configuration parameter</primary>
      </indexterm>
      <indexterm>
       <primary><varname>log_planner_stats</> configuration parameter</primary>
      </indexterm>
      <indexterm>
       <primary><varname>log_executor_stats</> configuration parameter</primary>
      </indexterm>
2950 2951 2952 2953
      <listitem>
       <para>
        For each query, write performance statistics of the respective
        module to the server log. This is a crude profiling
2954
        instrument.  <varname>log_statement_stats</varname> reports total
2955 2956 2957 2958
        statement statistics, while the others report per-module statistics.
        <varname>log_statement_stats</varname> cannot be enabled together with
        any of the per-module options.  All of these options are disabled by
        default.   Only superusers can change these settings.
2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969
       </para>
      </listitem>
     </varlistentry>

     </variablelist>

    </sect3>
    <sect3 id="runtime-config-statistics-collector">
     <title>Query and Index Statistics Collector</title>
     <variablelist>

2970
     <varlistentry id="guc-stats-start-collector" xreflabel="stats_start_collector">
2971
      <term><varname>stats_start_collector</varname> (<type>boolean</type>)</term>
2972 2973 2974
      <indexterm>
       <primary><varname>stats_start_collector</> configuration parameter</primary>
      </indexterm>
2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985
      <listitem>
       <para>
        Controls whether the server should start the
        statistics-collection subprocess.  This is on by default, but
        may be turned off if you know you have no interest in
        collecting statistics.  This option can only be set at server
        start.
       </para>
      </listitem>
     </varlistentry>

2986
     <varlistentry id="guc-stats-command-string" xreflabel="stats_command_string">
2987
      <term><varname>stats_command_string</varname> (<type>boolean</type>)</term>
2988 2989 2990
      <indexterm>
       <primary><varname>stats_command_string</> configuration parameter</primary>
      </indexterm>
2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005
      <listitem>
       <para>
        Enables the collection of statistics on the currently
        executing command of each session, along with the time at
        which that command began execution. This option is off by
        default. Note that even when enabled, this information is not
        visible to all users, only to superusers and the user owning
        the session being reported on; so it should not represent a
        security risk. This data can be accessed via the
        <structname>pg_stat_activity</structname> system view; refer
        to <xref linkend="monitoring"> for more information.
       </para>
      </listitem>
     </varlistentry>

3006
     <varlistentry id="guc-stats-block-level" xreflabel="stats_block_level">
3007
      <term><varname>stats_block_level</varname> (<type>boolean</type>)</term>
3008 3009 3010
      <indexterm>
       <primary><varname>stats_block_level</> configuration parameter</primary>
      </indexterm>
3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022
      <listitem>
       <para>
        Enables the collection of block-level statistics on database
        activity. This option is disabled by default. If this option
        is enabled, the data that is produced can be accessed via the
        <structname>pg_stat</structname> and
        <structname>pg_statio</structname> family of system views;
        refer to <xref linkend="monitoring"> for more information.
       </para>
      </listitem>
     </varlistentry>

3023
     <varlistentry id="guc-stats-row-level" xreflabel="stats_row_level">
3024
      <term><varname>stats_row_level</varname> (<type>boolean</type>)</term>
3025 3026 3027
      <indexterm>
       <primary><varname>stats_row_level</> configuration parameter</primary>
      </indexterm>
3028 3029
      <listitem>
       <para>
3030 3031 3032
        Enables the collection of row-level statistics on database
        activity. This option is disabled by default. If this option
        is enabled, the data that is produced can be accessed via the
3033 3034 3035 3036 3037 3038 3039
        <structname>pg_stat</structname> and
        <structname>pg_statio</structname> family of system views;
        refer to <xref linkend="monitoring"> for more information.
       </para>
      </listitem>
     </varlistentry>

3040
     <varlistentry id="guc-stats-reset-on-server-start" xreflabel="stats_reset_on_server_start">
3041
      <term><varname>stats_reset_on_server_start</varname> (<type>boolean</type>)</term>
3042 3043 3044
      <indexterm>
       <primary><varname>stats_reset_on_server_start</> configuration parameter</primary>
      </indexterm>
3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058
      <listitem>
       <para>
        If on, collected statistics are zeroed out whenever the server
        is restarted. If off, statistics are accumulated across server
        restarts. The default is on. This option can only be set at
        server start.
       </para>
      </listitem>
     </varlistentry>

     </variablelist>
    </sect3>
   </sect2>

3059 3060 3061 3062 3063 3064
   <sect2 id="runtime-config-client">
    <title>Client Connection Defaults</title>

    <sect3 id="runtime-config-client-statement">
     <title>Statement Behavior</title>
     <variablelist>
3065

3066
     <varlistentry id="guc-search-path" xreflabel="search_path">
3067
      <term><varname>search_path</varname> (<type>string</type>)</term>
3068 3069 3070
      <indexterm>
       <primary><varname>search_path</> configuration parameter</primary>
      </indexterm>
3071
      <indexterm><primary>path</><secondary>for schemas</></>
3072 3073
      <listitem>
       <para>
3074 3075 3076 3077 3078 3079 3080
        This variable specifies the order in which schemas are searched
        when an object (table, data type, function, etc.) is referenced by a
        simple name with no schema component.  When there are objects of
        identical names in different schemas, the one found first
        in the search path is used.  An object that is not in any of the
        schemas in the search path can only be referenced by specifying
        its containing schema with a qualified (dotted) name.
3081 3082 3083
       </para>

       <para>
3084
        The value for <varname>search_path</varname> has to be a comma-separated
3085 3086 3087 3088
        list of schema names.  If one of the list items is
        the special value <literal>$user</literal>, then the schema
        having the name returned by <function>SESSION_USER</> is substituted, if there
        is such a schema.  (If not, <literal>$user</literal> is ignored.)
3089
       </para>
3090

3091
       <para>
3092 3093 3094 3095 3096 3097 3098 3099
        The system catalog schema, <literal>pg_catalog</>, is always
        searched, whether it is mentioned in the path or not.  If it is
        mentioned in the path then it will be searched in the specified
        order.  If <literal>pg_catalog</> is not in the path then it will
        be searched <emphasis>before</> searching any of the path items.
        It should also be noted that the temporary-table schema,
        <literal>pg_temp_<replaceable>nnn</></>, is implicitly searched before any of
        these.
3100
       </para>
3101

3102 3103 3104 3105 3106 3107
       <para>
        When objects are created without specifying a particular target
        schema, they will be placed in the first schema listed
        in the search path.  An error is reported if the search path is
        empty.
       </para>
3108

3109 3110 3111 3112 3113 3114 3115 3116 3117 3118
       <para>
        The default value for this parameter is
        <literal>'$user, public'</literal> (where the second part will be
        ignored if there is no schema named <literal>public</>).
        This supports shared use of a database (where no users
        have private schemas, and all share use of <literal>public</>),
        private per-user schemas, and combinations of these.  Other
        effects can be obtained by altering the default search path
        setting, either globally or per-user.
       </para>
3119

3120
       <para>
3121
        The current effective value of the search path can be examined
3122 3123
        via the <acronym>SQL</acronym> function
        <function>current_schemas()</>.  This is not quite the same as
3124
        examining the value of <varname>search_path</varname>, since
3125
        <function>current_schemas()</> shows how the requests
3126
        appearing in <varname>search_path</varname> were resolved.
3127 3128 3129 3130
       </para>

       <para>
        For more information on schema handling, see <xref linkend="ddl-schemas">.
3131 3132 3133 3134
       </para>
      </listitem>
     </varlistentry>

3135 3136
     <varlistentry id="guc-default-tablespace" xreflabel="default_tablespace">
      <term><varname>default_tablespace</varname> (<type>string</type>)</term>
3137 3138 3139
      <indexterm>
       <primary><varname>default_tablespace</> configuration parameter</primary>
      </indexterm>
3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162
      <indexterm><primary>tablespace</><secondary>default</></>
      <listitem>
       <para>
        This variable specifies the default tablespace in which to create
        objects (tables and indexes) when a <command>CREATE</> command does
        not explicitly specify a tablespace.
       </para>

       <para>
        The value is either the name of a tablespace, or an empty string
        to specify using the default tablespace of the current database.
        If the value does not match the name of any existing tablespace,
        <productname>PostgreSQL</> will automatically use the default
        tablespace of the current database.
       </para>

       <para>
        For more information on tablespaces,
        see <xref linkend="manage-ag-tablespaces">.
       </para>
      </listitem>
     </varlistentry>

3163
     <varlistentry id="guc-check-function-bodies" xreflabel="check_function_bodies">
3164
      <term><varname>check_function_bodies</varname> (<type>boolean</type>)</term>
3165 3166 3167
      <indexterm>
       <primary><varname>check_function_bodies</> configuration parameter</primary>
      </indexterm>
3168 3169
      <listitem>
       <para>
3170
        This parameter is normally true.  When set to false, it disables
T
Tom Lane 已提交
3171
        validation of the function body string during <xref
3172 3173 3174 3175
        linkend="sql-createfunction"
        endterm="sql-createfunction-title">.  Disabling validation is
        occasionally useful to avoid problems such as forward
        references when restoring function definitions from a dump.
3176 3177 3178
       </para>
      </listitem>
     </varlistentry>
3179

3180
     <varlistentry id="guc-default-transaction-isolation" xreflabel="default_transaction_isolation">
3181 3182 3183
      <indexterm>
       <primary>transaction isolation level</primary>
      </indexterm>
3184 3185 3186
      <indexterm>
       <primary><varname>default_transaction_isolation</> configuration parameter</primary>
      </indexterm>
3187
      <term><varname>default_transaction_isolation</varname> (<type>string</type>)</term>
3188 3189
      <listitem>
       <para>
3190 3191 3192 3193 3194 3195
        Each SQL transaction has an isolation level, which can be
        either <quote>read uncommitted</quote>, <quote>read
        committed</quote>, <quote>repeatable read</quote>, or
        <quote>serializable</quote>.  This parameter controls the
        default isolation level of each new transaction. The default
        is <quote>read committed</quote>.
3196 3197 3198
       </para>

       <para>
3199
        Consult <xref linkend="mvcc"> and <xref linkend="sql-set-transaction"> for more
3200 3201 3202 3203 3204
        information.
       </para>
      </listitem>
     </varlistentry>

3205
     <varlistentry id="guc-default-transaction-read-only" xreflabel="default_transaction_read_only">
3206 3207 3208
      <indexterm>
       <primary>read-only transaction</primary>
      </indexterm>
3209 3210 3211
      <indexterm>
       <primary><varname>default_transaction_read_only</> configuration parameter</primary>
      </indexterm>
3212

3213
      <term><varname>default_transaction_read_only</varname> (<type>boolean</type>)</term>
3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225
      <listitem>
       <para>
        A read-only SQL transaction cannot alter non-temporary tables.
        This parameter controls the default read-only status of each new
        transaction. The default is false (read/write).
       </para>

       <para>
        Consult <xref linkend="sql-set-transaction"> for more information.
       </para>
      </listitem>
     </varlistentry>
3226
     
3227
     <varlistentry id="guc-statement-timeout" xreflabel="statement_timeout">
3228
      <term><varname>statement_timeout</varname> (<type>integer</type>)</term>
3229 3230 3231
      <indexterm>
       <primary><varname>statement_timeout</> configuration parameter</primary>
      </indexterm>
3232 3233
      <listitem>
       <para>
T
Tom Lane 已提交
3234
        Abort any statement that takes over the specified number of
3235
        milliseconds.  A value of zero (the default) turns off the limitation.
3236 3237 3238
       </para>
      </listitem>
     </varlistentry>
3239 3240 3241 3242 3243
     
     </variablelist>
    </sect3>
     <sect3 id="runtime-config-client-format">
     <title>Locale and Formatting</title>
3244

3245
     <variablelist>
3246

3247 3248
     <varlistentry id="guc-datestyle" xreflabel="DateStyle">
      <term><varname>DateStyle</varname> (<type>string</type>)</term>
3249 3250 3251
      <indexterm>
       <primary><varname>DateStyle</> configuration parameter</primary>
      </indexterm>
3252 3253
      <listitem>
       <para>
3254 3255 3256
        Sets the display format for date and time values, as well as the
        rules for interpreting ambiguous date input values. For
        historical reasons, this variable contains two independent
P
Peter Eisentraut 已提交
3257
        components: the output format specification (<literal>ISO</>,
3258 3259 3260 3261 3262 3263 3264 3265
        <literal>Postgres</>, <literal>SQL</>, or <literal>German</>)
        and the input/output specification for year/month/day ordering
        (<literal>DMY</>, <literal>MDY</>, or <literal>YMD</>). These
        can be set separately or together. The keywords <literal>Euro</>
        and <literal>European</> are synonyms for <literal>DMY</>; the
        keywords <literal>US</>, <literal>NonEuro</>, and
        <literal>NonEuropean</> are synonyms for <literal>MDY</>. See
        <xref linkend="datatype-datetime"> for more information. The
3266
        default is <literal>ISO, MDY</>.
3267 3268 3269 3270
       </para>
      </listitem>
     </varlistentry>

3271
     <varlistentry id="guc-timezone" xreflabel="timezone">
3272
      <term><varname>timezone</varname> (<type>string</type>)</term>
3273 3274 3275
      <indexterm>
       <primary><varname>timezone</> configuration parameter</primary>
      </indexterm>
3276
      <indexterm><primary>time zone</></>
3277 3278
      <listitem>
       <para>
3279
        Sets the time zone for displaying and interpreting time
3280 3281
        stamps.  The default is 'unknown', which means to use whatever 
        the system environment specifies as the time zone.  See <xref
3282
        linkend="datatype-datetime"> for more information.
3283
       </para>
3284 3285 3286
      </listitem>
     </varlistentry>

3287
     <varlistentry id="guc-australian-timezones" xreflabel="australian_timezones">
3288
      <term><varname>australian_timezones</varname> (<type>boolean</type>)</term>
3289 3290 3291
      <indexterm>
       <primary><varname>australian_timezones</> configuration parameter</primary>
      </indexterm>
P
Peter Eisentraut 已提交
3292
      <indexterm><primary>time zone</><secondary>Australian</></>
3293 3294
      <listitem>
       <para>
3295 3296 3297 3298 3299
        If set to true, <literal>ACST</literal>,
        <literal>CST</literal>, <literal>EST</literal>, and
        <literal>SAT</literal> are interpreted as Australian time
        zones rather than as North/South American time zones and
        Saturday. The default is false.
3300
       </para>
3301 3302
      </listitem>
     </varlistentry>
T
Tom Lane 已提交
3303

3304
     <varlistentry id="guc-extra-float-digits" xreflabel="extra_float_digits">
3305 3306 3307 3308
      <indexterm>
       <primary>significant digits</primary>
      </indexterm>
      <indexterm>
P
Peter Eisentraut 已提交
3309 3310
       <primary>floating-point</primary>
       <secondary>display</secondary>
3311
      </indexterm>
3312 3313 3314
      <indexterm>
       <primary><varname>extra_float_digits</> configuration parameter</primary>
      </indexterm>
3315

3316
      <term><varname>extra_float_digits</varname> (<type>integer</type>)</term>
3317
      <listitem>
T
Tom Lane 已提交
3318
       <para>
3319 3320 3321 3322 3323 3324 3325 3326
        This parameter adjusts the number of digits displayed for
        floating-point values, including <type>float4</>, <type>float8</>,
        and geometric data types.  The parameter value is added to the
        standard number of digits (<literal>FLT_DIG</> or <literal>DBL_DIG</>
        as appropriate).  The value can be set as high as 2, to include
        partially-significant digits; this is especially useful for dumping
        float data that needs to be restored exactly.  Or it can be set
        negative to suppress unwanted digits.
T
Tom Lane 已提交
3327
       </para>
3328 3329
      </listitem>
     </varlistentry>
3330

3331
     <varlistentry id="guc-client-encoding" xreflabel="client_encoding">
3332
      <term><varname>client_encoding</varname> (<type>string</type>)</term>
3333 3334 3335
      <indexterm>
       <primary><varname>client_encoding</> configuration parameter</primary>
      </indexterm>
P
Peter Eisentraut 已提交
3336
      <indexterm><primary>character set</></>
3337 3338 3339 3340 3341 3342 3343
      <listitem>
       <para>
        Sets the client-side encoding (character set).
        The default is to use the database encoding.
       </para>
      </listitem>
     </varlistentry>
3344

3345
     <varlistentry id="guc-lc-messages" xreflabel="lc_messages">
3346
      <term><varname>lc_messages</varname> (<type>string</type>)</term>
3347 3348 3349
      <indexterm>
       <primary><varname>lc_messages</> configuration parameter</primary>
      </indexterm>
3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368
      <listitem>
       <para>
        Sets the language in which messages are displayed.  Acceptable
        values are system-dependent; see <xref linkend="locale"> for
        more information.  If this variable is set to the empty string
        (which is the default) then the value is inherited from the
        execution environment of the server in a system-dependent way.
       </para>

       <para>
        On some systems, this locale category does not exist.  Setting
        this variable will still work, but there will be no effect.
        Also, there is a chance that no translated messages for the
        desired language exist.  In that case you will continue to see
        the English messages.
       </para>
      </listitem>
     </varlistentry>

3369
     <varlistentry id="guc-lc-monetary" xreflabel="lc_monetary">
3370
      <term><varname>lc_monetary</varname> (<type>string</type>)</term>
3371 3372 3373
      <indexterm>
       <primary><varname>lc_monetary</> configuration parameter</primary>
      </indexterm>
3374 3375
      <listitem>
       <para>
3376
        Sets the locale to use for formatting monetary amounts, for
3377
        example with the <function>to_char</function> family of
3378
        functions.  Acceptable values are system-dependent; see <xref
3379 3380 3381 3382 3383 3384 3385 3386
        linkend="locale"> for more information.  If this variable is
        set to the empty string (which is the default) then the value
        is inherited from the execution environment of the server in a
        system-dependent way.
       </para>
      </listitem>
     </varlistentry>

3387
     <varlistentry id="guc-lc-numeric" xreflabel="lc_numeric">
3388
      <term><varname>lc_numeric</varname> (<type>string</type>)</term>
3389 3390 3391
      <indexterm>
       <primary><varname>lc_numeric</> configuration parameter</primary>
      </indexterm>
3392 3393 3394
      <listitem>
       <para>
        Sets the locale to use for formatting numbers, for example
3395
        with the <function>to_char</function> family of
3396 3397 3398 3399 3400 3401 3402 3403 3404
        functions. Acceptable values are system-dependent; see <xref
        linkend="locale"> for more information.  If this variable is
        set to the empty string (which is the default) then the value
        is inherited from the execution environment of the server in a
        system-dependent way.
       </para>
      </listitem>
     </varlistentry>

3405
     <varlistentry id="guc-lc-time" xreflabel="lc_time">
3406
      <term><varname>lc_time</varname> (<type>string</type>)</term>
3407 3408 3409
      <indexterm>
       <primary><varname>lc_time</> configuration parameter</primary>
      </indexterm>
3410 3411
      <listitem>
       <para>
3412 3413 3414
        Sets the locale to use for formatting date and time values.
        (Currently, this setting does nothing, but it may in the
        future.)  Acceptable values are system-dependent; see <xref
3415 3416 3417 3418 3419 3420 3421 3422
        linkend="locale"> for more information.  If this variable is
        set to the empty string (which is the default) then the value
        is inherited from the execution environment of the server in a
        system-dependent way.
       </para>
      </listitem>
     </varlistentry>

3423
     </variablelist>
3424

3425 3426 3427
    </sect3>
     <sect3 id="runtime-config-client-other">
     <title>Other Defaults</title>
3428

3429
     <variablelist>
3430

3431
     <varlistentry id="guc-explain-pretty-print" xreflabel="explain_pretty_print">
3432
      <term><varname>explain_pretty_print</varname> (<type>boolean</type>)</term>
3433 3434 3435
      <indexterm>
       <primary><varname>explain_pretty_print</> configuration parameter</primary>
      </indexterm>
3436 3437
      <listitem>
       <para>
3438 3439 3440
        Determines whether <command>EXPLAIN VERBOSE</> uses the
        indented or non-indented format for displaying detailed
        query-tree dumps. The default is on.
3441 3442 3443 3444
       </para>
      </listitem>
     </varlistentry>

3445
     <varlistentry id="guc-dynamic-library-path" xreflabel="dynamic_library_path">
3446
      <term><varname>dynamic_library_path</varname> (<type>string</type>)</term>
3447 3448 3449
      <indexterm>
       <primary><varname>dynamic_library_path</> configuration parameter</primary>
      </indexterm>
3450
      <indexterm><primary>dynamic loading</></>
3451 3452
      <listitem>
       <para>
3453
        If a dynamically loadable module needs to be opened and the
3454 3455 3456
        file name specified in the <command>CREATE FUNCTION</command> or
        <command>LOAD</command> command
        does not have a directory component (i.e. the
3457
        name does not contain a slash), the system will search this
3458
        path for the required file.
3459 3460
       </para>

3461
       <para>
3462
        The value for <varname>dynamic_library_path</varname> has to be a
3463
        list of absolute directory paths separated by colons (or semi-colons
3464
        on Windows).  If a list element starts
3465
        with the special string <literal>$libdir</literal>, the
3466
        compiled-in <productname>PostgreSQL</productname> package
3467 3468 3469 3470 3471
        library directory is substituted for <literal>$libdir</literal>. This
        is where the modules provided by the standard
        <productname>PostgreSQL</productname> distribution are installed.
        (Use <literal>pg_config --pkglibdir</literal> to find out the name of
        this directory.) For example:
3472 3473
<programlisting>
dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir'
3474
</programlisting>
3475
        or, in a Windows environment:
3476 3477
<programlisting>
dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
3478
</programlisting>
3479 3480 3481
       </para>

       <para>
3482 3483 3484
        The default value for this parameter is
        <literal>'$libdir'</literal>. If the value is set to an empty
        string, the automatic path search is turned off.
3485 3486 3487
       </para>

       <para>
3488 3489 3490 3491 3492 3493
        This parameter can be changed at run time by superusers, but a
        setting done that way will only persist until the end of the
        client connection, so this method should be reserved for
        development purposes. The recommended way to set this parameter
        is in the <filename>postgresql.conf</filename> configuration
        file.
3494 3495 3496 3497
       </para>
      </listitem>
     </varlistentry>

3498 3499 3500 3501 3502 3503 3504 3505 3506
     </variablelist>
    </sect3>
   </sect2>

   <sect2 id="runtime-config-locks">
    <title>Lock Management</title>

     <variablelist>

3507
     <varlistentry id="guc-deadlock-timeout" xreflabel="deadlock_timeout">
3508
      <indexterm>
3509
       <primary>deadlock</primary>
P
Peter Eisentraut 已提交
3510
       <secondary>timeout during</secondary>
3511 3512 3513 3514
      </indexterm>
      <indexterm>
       <primary>timeout</primary>
       <secondary>deadlock</secondary>
3515
      </indexterm>
3516 3517 3518
      <indexterm>
       <primary><varname>deadlock_timeout</> configuration parameter</primary>
      </indexterm>
3519

3520
      <term><varname>deadlock_timeout</varname> (<type>integer</type>)</term>
3521 3522
      <listitem>
       <para>
3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536
        This is the amount of time, in milliseconds, to wait on a lock
        before checking to see if there is a deadlock condition. The
        check for deadlock is relatively slow, so the server doesn't run
        it every time it waits for a lock. We (optimistically?) assume
        that deadlocks are not common in production applications and
        just wait on the lock for a while before starting the check for a
        deadlock. Increasing this value reduces the amount of time
        wasted in needless deadlock checks, but slows down reporting of
        real deadlock errors. The default is 1000 (i.e., one second),
        which is probably about the smallest value you would want in
        practice. On a heavily loaded server you might want to raise it.
        Ideally the setting should exceed your typical transaction time,
        so as to improve the odds that a lock will be released before
        the waiter decides to check for deadlock.
3537 3538 3539 3540
       </para>
      </listitem>
     </varlistentry>

3541
     <varlistentry id="guc-max-locks-per-transaction" xreflabel="max_locks_per_transaction">
3542
      <term><varname>max_locks_per_transaction</varname> (<type>integer</type>)</term>
3543 3544 3545
      <indexterm>
       <primary><varname>max_locks_per_transaction</> configuration parameter</primary>
      </indexterm>
3546 3547
      <listitem>
       <para>
3548
        The shared lock table is sized on the assumption that at most
3549
        <varname>max_locks_per_transaction</varname> *
3550
        <varname>max_connections</varname> distinct objects will need to
T
Tom Lane 已提交
3551 3552 3553 3554
        be locked at any one time. (Thus, this parameter's name may be
        confusing: it is not a hard limit on the number of locks taken
        by any one transaction, but rather a maximum average value.)
        The default, 64, has historically
3555 3556 3557
        proven sufficient, but you might need to raise this value if you
        have clients that touch many different tables in a single
        transaction. This option can only be set at server start.
3558 3559 3560 3561
       </para>
      </listitem>
     </varlistentry>

3562 3563 3564 3565 3566 3567 3568
     </variablelist>
   </sect2>

   <sect2 id="runtime-config-compatible">
    <title>Version and Platform Compatibility</title>

    <sect3 id="runtime-config-compatible-version">
P
Peter Eisentraut 已提交
3569
     <title>Previous PostgreSQL Versions</title>
3570 3571
     <variablelist>

3572
     <varlistentry id="guc-add-missing-from" xreflabel="add_missing_from">
3573
      <term><varname>add_missing_from</varname> (<type>boolean</type>)</term>
P
Peter Eisentraut 已提交
3574
      <indexterm><primary>FROM</><secondary>missing</></>
3575 3576 3577
      <indexterm>
       <primary><varname>add_missing_from</> configuration parameter</primary>
      </indexterm>
3578 3579
      <listitem>
       <para>
3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598
        When <literal>true</>, tables that are referenced by a query
        will be automatically added to the <literal>FROM</> clause if
        not already present. This behavior does not comply with the
        SQL standard and many people dislike it because it can mask
        mistakes (such as referencing a table where you should have
        referenced its alias). The default is <literal>false</>. This
        variable can be enabled for compatibility with releases of
        <productname>PostgreSQL</> prior to 8.1, where this behavior
        was allowed by default.
       </para>

       <para>
        Note that even when this variable is enabled, a warning
        message will be emitted for each implicit <literal>FROM</>
        entry referenced by a query. Users are encouraged to update
        their applications to not rely on this behavior, by adding all
        tables referenced by a query to the query's <literal>FROM</>
        clause (or its <literal>USING</> clause in the case of
        <command>DELETE</>).
3599
       </para>
3600 3601
      </listitem>
     </varlistentry>
3602

3603
     <varlistentry id="guc-regex-flavor" xreflabel="regex_flavor">
3604
      <term><varname>regex_flavor</varname> (<type>string</type>)</term>
3605
      <indexterm><primary>regular expressions</></>
3606 3607 3608
      <indexterm>
       <primary><varname>regex_flavor</> configuration parameter</primary>
      </indexterm>
3609
      <listitem>
3610
       <para>
3611 3612
        The regular expression <quote>flavor</> can be set to
        <literal>advanced</>, <literal>extended</>, or <literal>basic</>.
3613
        The default is <literal>advanced</>.  The <literal>extended</>
3614
        setting may be useful for exact backwards compatibility with
T
Tom Lane 已提交
3615 3616
        pre-7.4 releases of <productname>PostgreSQL</>.  See
        <xref linkend="posix-syntax-details"> for details.
3617 3618 3619 3620
       </para>
      </listitem>
     </varlistentry>

3621
     <varlistentry id="guc-sql-inheritance" xreflabel="sql_inheritance">
3622
      <term><varname>sql_inheritance</varname> (<type>boolean</type>)</term>
3623 3624 3625
      <indexterm>
       <primary><varname>sql_inheritance</> configuration parameter</primary>
      </indexterm>
3626
      <indexterm><primary>inheritance</></>
3627 3628
      <listitem>
       <para>
3629 3630 3631 3632 3633 3634
        This controls the inheritance semantics, in particular whether
        subtables are included by various commands by default. They were
        not included in versions prior to 7.1. If you need the old
        behavior you can set this variable to off, but in the long run
        you are encouraged to change your applications to use the
        <literal>ONLY</literal> key word to exclude subtables. See
3635
        <xref linkend="ddl-inherit"> for more information about inheritance.
3636 3637 3638
       </para>
      </listitem>
     </varlistentry>
3639

3640
     <varlistentry id="guc-default-with-oids" xreflabel="default_with_oids">
3641
      <term><varname>default_with_oids</varname> (<type>boolean</type>)</term>
3642 3643 3644
      <indexterm>
       <primary><varname>default_with_oids</> configuration parameter</primary>
      </indexterm>
3645 3646
      <listitem>
       <para>
N
Neil Conway 已提交
3647
        This controls whether <command>CREATE TABLE</command> and
T
Tom Lane 已提交
3648
        <command>CREATE TABLE AS</command> include an OID column in
3649
        newly-created tables, if neither <literal>WITH OIDS</literal>
N
Neil Conway 已提交
3650 3651
        nor <literal>WITHOUT OIDS</literal> is specified. It also
        determines whether OIDs will be included in tables created by
3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663
        <command>SELECT INTO</command>. In <productname>PostgreSQL</>
        8.1 <varname>default_with_oids</> is disabled by default; in
        prior versions of PostgreSQL, it was true by default.
       </para>

       <para>
        The use of OIDs in user tables is considered deprecated, so
        most installations should leave this variable disabled.
        Applications that require OIDs for a particular table should
        specify <literal>WITH OIDS</literal> when creating the
        table. This variable can be enabled for compatibility with old
        applications that do not follow this behavior.
3664 3665 3666 3667 3668
       </para>
      </listitem>
     </varlistentry>

     </variablelist>
3669 3670 3671 3672 3673
    </sect3>
    <sect3 id="runtime-config-compatible-clients">
     <title>Platform and Client Compatibility</title>
     <variablelist>

3674
     <varlistentry id="guc-transform-null-equals" xreflabel="transform_null_equals">
3675
      <term><varname>transform_null_equals</varname> (<type>boolean</type>)</term>
P
Peter Eisentraut 已提交
3676
      <indexterm><primary>IS NULL</></>
3677 3678 3679
      <indexterm>
       <primary><varname>transform_null_equals</> configuration parameter</primary>
      </indexterm>
3680 3681 3682
      <listitem>
       <para>
        When turned on, expressions of the form
3683 3684
        <literal><replaceable>expr</> = NULL</literal> (or <literal>NULL
        = <replaceable>expr</></literal>) are treated as
3685
        <literal><replaceable>expr</> IS NULL</literal>, that is, they
3686
        return true if <replaceable>expr</> evaluates to the null value,
3687
        and false otherwise. The correct SQL-spec-compliant behavior of
3688
        <literal><replaceable>expr</> = NULL</literal> is to always
3689
        return null (unknown). Therefore this option defaults to off.
3690 3691 3692 3693 3694 3695
       </para>

       <para>
        However, filtered forms in <productname>Microsoft
        Access</productname> generate queries that appear to use
        <literal><replaceable>expr</> = NULL</literal> to test for
P
Peter Eisentraut 已提交
3696
        null values, so if you use that interface to access the database you
3697 3698
        might want to turn this option on.  Since expressions of the
        form <literal><replaceable>expr</> = NULL</literal> always
3699
        return the null value (using the correct interpretation) they are not
3700 3701 3702
        very useful and do not appear often in normal applications, so
        this option does little harm in practice.  But new users are
        frequently confused about the semantics of expressions
3703
        involving null values, so this option is not on by default.
3704 3705 3706
       </para>

       <para>
3707 3708
        Note that this option only affects the exact form <literal>= NULL</>,
        not other comparison operators or other expressions
3709 3710 3711 3712 3713 3714
        that are computationally equivalent to some expression
        involving the equals operator (such as <literal>IN</literal>).
        Thus, this option is not a general fix for bad programming.
       </para>

       <para>
3715
        Refer to <xref linkend="functions-comparison"> for related information.
3716 3717 3718 3719
       </para>
      </listitem>
     </varlistentry>

3720 3721
     </variablelist>
    </sect3>
3722
   </sect2>
3723

3724 3725
   <sect2 id="runtime-config-preset">
    <title>Preset Options</title>
3726 3727

    <para>
3728
     The following <quote>parameters</> are read-only, and are determined
3729 3730
     when <productname>PostgreSQL</productname> is compiled or when it is
     installed. As such, they have been excluded from the sample
T
Tom Lane 已提交
3731
     <filename>postgresql.conf</> file.  These options report
3732 3733 3734
     various aspects of <productname>PostgreSQL</productname> behavior
     that may be of interest to certain applications, particularly
     administrative front-ends.
3735 3736 3737 3738
    </para>

    <variablelist>

3739
     <varlistentry id="guc-block-size" xreflabel="block_size">
3740
      <term><varname>block_size</varname> (<type>integer</type>)</term>
3741 3742 3743
      <indexterm>
       <primary><varname>block_size</> configuration parameter</primary>
      </indexterm>
3744 3745 3746 3747
      <listitem>
       <para>
        Shows the size of a disk block.  It is determined by the value
        of <literal>BLCKSZ</> when building the server. The default
3748 3749 3750 3751
        value is 8192 bytes.  The meaning of some configuration
        variables (such as <xref linkend="guc-shared-buffers">) is
        influenced by <varname>block_size</varname>. See <xref
        linkend="runtime-config-resource"> for information.
3752 3753 3754 3755
       </para>
      </listitem>
     </varlistentry>

3756
     <varlistentry id="guc-integer-datetimes" xreflabel="integer_datetimes">
3757
      <term><varname>integer_datetimes</varname> (<type>boolean</type>)</term>
3758 3759 3760
      <indexterm>
       <primary><varname>integer_datetimes</> configuration parameter</primary>
      </indexterm>
3761 3762
      <listitem>
       <para>
3763
        Shows whether <productname>PostgreSQL</productname> was built
3764
        with support for 64-bit-integer dates and times.  It is set by
3765 3766 3767
        configuring with <literal>--enable-integer-datetimes</literal>
        when building <productname>PostgreSQL</productname>.  The
        default value is <literal>off</literal>.
3768 3769 3770 3771
       </para>
      </listitem>
     </varlistentry>

3772 3773
     <varlistentry id="guc-lc-collate" xreflabel="lc_collate">
      <term><varname>lc_collate</varname> (<type>string</type>)</term>
3774 3775 3776
      <indexterm>
       <primary><varname>lc_collate</> configuration parameter</primary>
      </indexterm>
3777 3778 3779
      <listitem>
       <para>
        Shows the locale in which sorting of textual data is done.
3780 3781
        See <xref linkend="locale"> for more information.
        The value is determined when the database cluster is initialized.
3782 3783 3784 3785 3786 3787
       </para>
      </listitem>
     </varlistentry>

     <varlistentry id="guc-lc-ctype" xreflabel="lc_ctype">
      <term><varname>lc_ctype</varname> (<type>string</type>)</term>
3788 3789 3790
      <indexterm>
       <primary><varname>lc_ctype</> configuration parameter</primary>
      </indexterm>
3791 3792 3793
      <listitem>
       <para>
        Shows the locale that determines character classifications.
3794 3795 3796 3797
        See <xref linkend="locale"> for more information.
        The value is determined when the database cluster is initialized.
        Ordinarily this will be the same as <varname>lc_collate</varname>,
        but for special applications it might be set differently.
3798 3799 3800 3801
       </para>
      </listitem>
     </varlistentry>

3802
     <varlistentry id="guc-max-function-args" xreflabel="max_function_args">
3803
      <term><varname>max_function_args</varname> (<type>integer</type>)</term>
3804 3805 3806
      <indexterm>
       <primary><varname>max_function_args</> configuration parameter</primary>
      </indexterm>
3807 3808 3809 3810
      <listitem>
       <para>
        Shows the maximum number of function arguments. It is determined by
        the value of <literal>FUNC_MAX_ARGS</> when building the server. The
3811
        default value is 100.
3812 3813 3814 3815
       </para>
      </listitem>
     </varlistentry>

3816
     <varlistentry id="guc-max-identifier-length" xreflabel="max_identifier_length">
3817
      <term><varname>max_identifier_length</varname> (<type>integer</type>)</term>
3818 3819 3820
      <indexterm>
       <primary><varname>max_identifier_length</> configuration parameter</primary>
      </indexterm>
3821 3822
      <listitem>
       <para>
3823 3824 3825 3826
        Shows the maximum identifier length. It is determined as one
        less than the value of <literal>NAMEDATALEN</> when building
        the server. The default value of <literal>NAMEDATALEN</> is
        64; therefore the default
3827 3828 3829 3830 3831
        <varname>max_identifier_length</varname> is 63.
       </para>
      </listitem>
     </varlistentry>

3832
     <varlistentry id="guc-max-index-keys" xreflabel="max_index_keys">
3833
      <term><varname>max_index_keys</varname> (<type>integer</type>)</term>
3834 3835 3836
      <indexterm>
       <primary><varname>max_index_keys</> configuration parameter</primary>
      </indexterm>
3837 3838 3839 3840 3841 3842 3843 3844 3845
      <listitem>
       <para>
        Shows the maximum number of index keys. It is determined by
        the value of <literal>INDEX_MAX_KEYS</> when building the server. The
        default value is 32.
       </para>
      </listitem>
     </varlistentry>

3846 3847
     <varlistentry id="guc-server-encoding" xreflabel="server_encoding">
      <term><varname>server_encoding</varname> (<type>string</type>)</term>
3848 3849 3850
      <indexterm>
       <primary><varname>server_encoding</> configuration parameter</primary>
      </indexterm>
3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863
      <indexterm><primary>character set</></>
      <listitem>
       <para>
        Shows the database encoding (character set).
        It is determined when the database is created.  Ordinarily,
        clients need only be concerned with the value of <xref
        linkend="guc-client-encoding">.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry id="guc-server-version" xreflabel="server_version">
      <term><varname>server_version</varname> (<type>string</type>)</term>
3864 3865 3866
      <indexterm>
       <primary><varname>server_version</> configuration parameter</primary>
      </indexterm>
3867 3868 3869 3870 3871 3872 3873 3874
      <listitem>
       <para>
        Shows the version number of the server. It is determined by the
        value of <literal>PG_VERSION</> when building the server.
       </para>
      </listitem>
     </varlistentry>

3875 3876 3877
    </variablelist>
   </sect2>

3878 3879 3880 3881
   <sect2 id="runtime-config-custom">
    <title>Customized Options</title>

    <para>
3882 3883 3884 3885
     This feature was designed to allow options not normally known to
     <productname>PostgreSQL</productname> to be added by add-on modules
     (such as procedural languages).  This allows add-on modules to be
     configured in the standard ways.
3886 3887 3888 3889
    </para>

    <variablelist>

3890
     <varlistentry id="guc-custom-variable-classes" xreflabel="custom_variable_classes">
3891
      <term><varname>custom_variable_classes</varname> (<type>string</type>)</term>
3892 3893 3894
      <indexterm>
       <primary><varname>custom_variable_classes</> configuration parameter</primary>
      </indexterm>
3895 3896
      <listitem>
       <para>
3897 3898 3899 3900 3901
        This variable specifies one or several class names to be used for
        custom variables, in the form of a comma-separated list. A custom
        variable is a variable not normally known
        to <productname>PostgreSQL</productname> proper but used by some
        add-on module.  Such variables must have names consisting of a class
3902
        name, a dot, and a variable name.  <varname>custom_variable_classes</>
3903
        specifies all the class names in use in a particular installation.
3904 3905 3906 3907 3908 3909 3910
        This option can only be set at server start or in the
        <filename>postgresql.conf</filename> configuration file.
       </para>

      </listitem>
     </varlistentry>
    </variablelist>
3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938

    <para>
     The difficulty with setting custom variables in
     <filename>postgresql.conf</> is that the file must be read before add-on
     modules have been loaded, and so custom variables would ordinarily be
     rejected as unknown.  When <varname>custom_variable_classes</> is set,
     the server will accept definitions of arbitrary variables within each
     specified class.  These variables will be treated as placeholders and
     will have no function until the module that defines them is loaded. When a
     module for a specific class is loaded, it will add the proper variable
     definitions for its class name, convert any placeholder
     values according to those definitions, and issue warnings for any
     placeholders of its class that remain (which presumably would be
     misspelled configuration variables).
    </para>

    <para>
     Here is an example of what <filename>postgresql.conf</> might contain
     when using custom variables:

<programlisting>
custom_variable_classes = 'plr,pljava'
plr.path = '/usr/lib/R'
pljava.foo = 1
plruby.bar = true        # generates error, unknown class name
</programlisting>
    </para>
   </sect2>
3939

3940
   <sect2 id="runtime-config-developer">
3941
    <title>Developer Options</title>
3942

3943
    <para>
3944 3945 3946 3947 3948 3949 3950
     The following options are intended for work on the
     <productname>PostgreSQL</productname> source, and in some cases
     to assist with recovery of severely damaged databases.  There
     should be no reason to use them in a production database setup.
     As such, they have been excluded from the sample
     <filename>postgresql.conf</> file.  Note that many of these
     options require special source compilation flags to work at all.
3951
    </para>
3952 3953

    <variablelist>
3954
     <varlistentry id="guc-debug-assertions" xreflabel="debug_assertions">
3955
      <term><varname>debug_assertions</varname> (<type>boolean</type>)</term>
3956 3957 3958
      <indexterm>
       <primary><varname>debug_assertions</> configuration parameter</primary>
      </indexterm>
3959 3960
      <listitem>
       <para>
3961 3962 3963
        Turns on various assertion checks. This is a debugging aid. If
        you are experiencing strange problems or crashes you might want
        to turn this on, as it might expose programming mistakes. To use
P
Peter Eisentraut 已提交
3964
        this option, the macro <symbol>USE_ASSERT_CHECKING</symbol>
3965 3966 3967
        must be defined when <productname>PostgreSQL</productname> is
        built (accomplished by the <command>configure</command> option
        <option>--enable-cassert</option>). Note that
P
Peter Eisentraut 已提交
3968
        <varname>debug_assertions</varname> defaults to on if
3969 3970
        <productname>PostgreSQL</productname> has been built with
        assertions enabled.
3971 3972 3973 3974
       </para>
      </listitem>
     </varlistentry>

3975
     <varlistentry id="guc-pre-auth-delay" xreflabel="pre_auth_delay">
3976
      <term><varname>pre_auth_delay</varname> (<type>integer</type>)</term>
3977 3978 3979
      <indexterm>
       <primary><varname>pre_auth_delay</> configuration parameter</primary>
      </indexterm>
3980 3981 3982
      <listitem>
       <para>
        If nonzero, a delay of this many seconds occurs just after a new
P
Peter Eisentraut 已提交
3983 3984 3985 3986
        server process is forked, before it conducts the authentication
        process.  This is intended to give an opportunity to attach to the
        server process with a debugger to trace down misbehavior in
        authentication.
3987 3988 3989 3990
       </para>
      </listitem>
     </varlistentry>

3991
     <varlistentry id="guc-trace-notify" xreflabel="trace_notify">
3992
      <term><varname>trace_notify</varname> (<type>boolean</type>)</term>
3993 3994 3995
      <indexterm>
       <primary><varname>trace_notify</> configuration parameter</primary>
      </indexterm>
3996 3997
      <listitem>
       <para>
3998 3999
        Generates a great amount of debugging output for the
        <command>LISTEN</command> and <command>NOTIFY</command>
4000 4001
        commands.  <xref linkend="guc-client-min-messages"> or
        <xref linkend="guc-log-min-messages"> must be
4002
        <literal>DEBUG1</literal> or lower to send this output to the
4003
        client or server log, respectively.
4004 4005 4006 4007
       </para>
      </listitem>
     </varlistentry>

4008
     <varlistentry>
4009 4010 4011 4012 4013 4014 4015
      <term><varname>trace_locks</varname> (<type>boolean</type>)</term>
      <term><varname>trace_lwlocks</varname> (<type>boolean</type>)</term>
      <term><varname>trace_userlocks</varname> (<type>boolean</type>)</term>
      <term><varname>trace_lock_oidmin</varname> (<type>boolean</type>)</term>
      <term><varname>trace_lock_table</varname> (<type>boolean</type>)</term>
      <term><varname>debug_deadlocks</varname> (<type>boolean</type>)</term>
      <term><varname>log_btree_build_stats</varname> (<type>boolean</type>)</term>
4016 4017
      <listitem>
       <para>
4018
        Various other code tracing and debugging options.
4019 4020 4021 4022
       </para>
      </listitem>
     </varlistentry>

4023
     <varlistentry id="guc-wal-debug" xreflabel="wal_debug">
4024
      <term><varname>wal_debug</varname> (<type>boolean</type>)</term>
4025 4026 4027
      <indexterm>
       <primary><varname>wal_debug</> configuration parameter</primary>
      </indexterm>
4028 4029
      <listitem>
       <para>
4030 4031 4032 4033
        If true, emit WAL-related debugging output. This option is
        only available if the <symbol>WAL_DEBUG</symbol> macro was
        defined when <productname>PostgreSQL</productname> was
        compiled.
4034 4035 4036 4037
       </para>
      </listitem>
     </varlistentry>

4038
    <varlistentry id="guc-zero-damaged-pages" xreflabel="zero_damaged_pages">
4039
      <term><varname>zero_damaged_pages</varname> (<type>boolean</type>)</term>
4040 4041 4042
      <indexterm>
       <primary><varname>zero_damaged_pages</> configuration parameter</primary>
      </indexterm>
4043 4044
      <listitem>
       <para>
4045 4046
        Detection of a damaged page header normally causes
        <productname>PostgreSQL</> to report an error, aborting the current
T
Tom Lane 已提交
4047
        command.  Setting <varname>zero_damaged_pages</> to true causes
4048 4049 4050 4051 4052 4053 4054 4055 4056
        the system to instead report a warning, zero out the damaged page,
        and continue processing.  This behavior <emphasis>will destroy data</>,
        namely all the rows on the damaged page.  But it allows you to get
        past the error and retrieve rows from any undamaged pages that may
        be present in the table.  So it is useful for recovering data if
        corruption has occurred due to hardware or software error.  You should
        generally not set this true until you have given up hope of recovering
        data from the damaged page(s) of a table.  The
        default setting is off, and it can only be changed by a superuser.
4057 4058 4059
       </para>
      </listitem>
     </varlistentry>
4060 4061
   </variablelist>
  </sect2>
4062 4063 4064
  <sect2 id="runtime-config-short">
   <title>Short Options</title>

4065
   <para>
4066 4067
    For convenience there are also single letter command-line option switches
    available for some parameters. They are described in <xref
4068 4069
    linkend="runtime-config-short-table">.
   </para>
4070

4071
    <table id="runtime-config-short-table">
4072
     <title>Short option key</title>
4073
     <tgroup cols="2">
4074 4075 4076 4077 4078 4079
      <thead>
       <row>
        <entry>Short option</entry>
        <entry>Equivalent</entry>
       </row>
      </thead>
4080

4081 4082
      <tbody>
       <row>
4083 4084
        <entry><option>-B <replaceable>x</replaceable></option></entry>
        <entry><literal>shared_buffers = <replaceable>x</replaceable></></entry>
4085 4086
       </row>
       <row>
4087
        <entry><option>-d <replaceable>x</replaceable></option></entry>
4088
        <entry><literal>log_min_messages = DEBUG<replaceable>x</replaceable></></entry>
4089 4090
       </row>
       <row>
4091 4092
        <entry><option>-F</option></entry>
        <entry><literal>fsync = off</></entry>
4093
       </row>
4094
       <row>
4095
        <entry><option>-h <replaceable>x</replaceable></option></entry>
4096
        <entry><literal>listen_addresses = <replaceable>x</replaceable></></entry>
4097
       </row>
4098
       <row>
4099
        <entry><option>-i</option></entry>
4100
        <entry><literal>listen_addresses = '*'</></entry>
4101 4102
       </row>
       <row>
4103 4104
        <entry><option>-k <replaceable>x</replaceable></option></entry>
        <entry><literal>unix_socket_directory = <replaceable>x</replaceable></></entry>
4105
       </row>
4106
       <row>
4107 4108
        <entry><option>-l</option></entry>
        <entry><literal>ssl = on</></entry>
4109
       </row>
4110
       <row>
4111 4112
        <entry><option>-N <replaceable>x</replaceable></option></entry>
        <entry><literal>max_connections = <replaceable>x</replaceable></></entry>
4113 4114
       </row>
       <row>
4115 4116
        <entry><option>-p <replaceable>x</replaceable></option></entry>
        <entry><literal>port = <replaceable>x</replaceable></></entry>
4117 4118 4119
       </row>

       <row>
4120
        <entry>
4121
          <option>-fb</option>, <option>-fh</option>, <option>-fi</option>,
4122 4123 4124 4125 4126
          <option>-fm</option>, <option>-fn</option>,
          <option>-fs</option>, <option>-ft</option><footnote
          id="fn.runtime-config-short">
           <para>
            For historical reasons, these options must be passed to
4127 4128
            the individual server process via the <option>-o</option>
            <command>postmaster</command> option, for example,
4129 4130 4131 4132 4133 4134 4135 4136 4137
<screen>
$ <userinput>postmaster -o '-S 1024 -s'</userinput>
</screen>
            or via <envar>PGOPTIONS</envar> from the client side, as
            explained above.
           </para>
          </footnote>
         </entry>
         <entry>
4138
          <literal>enable_bitmapscan = off</>,
4139
          <literal>enable_hashjoin = off</>,
4140
          <literal>enable_indexscan = off</>,
4141 4142 4143 4144
          <literal>enable_mergejoin = off</>,
          <literal>enable_nestloop = off</>,
          <literal>enable_seqscan = off</>,
          <literal>enable_tidscan = off</>
4145
         </entry>
4146
       </row>
4147

4148
       <row>
4149
        <entry><option>-s</option><footnoteref linkend="fn.runtime-config-short"></entry>
4150
        <entry><literal>log_statement_stats = on</></entry>
4151
       </row>
4152

4153
       <row>
4154 4155
        <entry><option>-S <replaceable>x</replaceable></option><footnoteref linkend="fn.runtime-config-short">
        </entry>
4156
        <entry><literal>work_mem = <replaceable>x</replaceable></></entry>
4157
       </row>
4158

4159
       <row>
4160
        <entry><option>-tpa</option>, <option>-tpl</option>, <option>-te</option><footnoteref linkend="fn.runtime-config-short"></entry>
4161 4162 4163
        <entry><literal>log_parser_stats = on</>,
        <literal>log_planner_stats = on</>, 
        <literal>log_executor_stats = on</></entry>
4164 4165 4166 4167 4168
       </row>
      </tbody>
     </tgroup>
    </table>

4169
  </sect2>
4170 4171
 </sect1>

4172

4173 4174 4175 4176
 <sect1 id="kernel-resources">
  <title>Managing Kernel Resources</title>

  <para>
4177
   A large <productname>PostgreSQL</> installation can quickly exhaust
4178 4179 4180
   various operating system resource limits. (On some systems, the
   factory defaults are so low that you don't even need a really
   <quote>large</> installation.) If you have encountered this kind of
4181
   problem, keep reading.
4182 4183 4184 4185 4186
  </para>

  <sect2 id="sysvipc">
   <title>Shared Memory and Semaphores</title>

4187 4188 4189 4190 4191 4192 4193 4194
   <indexterm zone="sysvipc">
    <primary>shared memory</primary>
   </indexterm>

   <indexterm zone="sysvipc">
    <primary>semaphores</primary>
   </indexterm>

4195 4196
   <para>
    Shared memory and semaphores are collectively referred to as
4197 4198 4199
    <quote><systemitem class="osname">System V</>
    <acronym>IPC</></quote> (together with message queues, which are not
    relevant for <productname>PostgreSQL</>). Almost all modern
4200
    operating systems provide these features, but not all of them have
4201 4202 4203 4204
    them turned on or sufficiently sized by default, especially systems
    with BSD heritage. (For the <systemitem class="osname">QNX</> and
    <systemitem class="osname">BeOS</> ports, <productname>PostgreSQL</>
    provides its own replacement implementation of these facilities.)
4205 4206 4207 4208
   </para>

   <para>
    The complete lack of these facilities is usually manifested by an
4209
    <errorname>Illegal system call</> error upon server start. In
4210
    that case there's nothing left to do but to reconfigure your
4211
    kernel.  <productname>PostgreSQL</> won't work without them.
4212 4213 4214
   </para>

   <para>
4215
    When <productname>PostgreSQL</> exceeds one of the various hard
4216
    <acronym>IPC</> limits, the server will refuse to start and
4217 4218 4219 4220 4221 4222 4223 4224
    should leave an instructive error message describing the problem
    encountered and what to do about it. (See also <xref
    linkend="postmaster-start-failures">.) The relevant kernel
    parameters are named consistently across different systems; <xref
    linkend="sysvipc-parameters"> gives an overview. The methods to set
    them, however, vary. Suggestions for some platforms are given below.
    Be warned that it is often necessary to reboot your machine, and
    possibly even recompile the kernel, to change these settings.
4225 4226 4227 4228
   </para>


   <table id="sysvipc-parameters">
4229
    <title><systemitem class="osname">System V</> <acronym>IPC</> parameters</>
4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243

    <tgroup cols="3">
     <thead>
      <row>
       <entry>Name</>
       <entry>Description</>
       <entry>Reasonable values</>
      </row>
     </thead>

     <tbody>
      <row>
       <entry><varname>SHMMAX</></>
       <entry>Maximum size of shared memory segment (bytes)</>
4244 4245
       <entry>250 kB + 8.2 kB * <xref linkend="guc-shared-buffers"> +
       14.2 kB * <xref linkend="guc-max-connections"> up to infinity</entry>
4246 4247 4248 4249 4250
      </row>

      <row>
       <entry><varname>SHMMIN</></>
       <entry>Minimum size of shared memory segment (bytes)</>
B
Bruce Momjian 已提交
4251
       <entry>1</>
4252 4253
      </row>

4254 4255 4256
      <row>
       <entry><varname>SHMALL</></>
       <entry>Total amount of shared memory available (bytes or pages)</>
4257
       <entry>if bytes, same as <varname>SHMMAX</varname>; if pages, <literal>ceil(SHMMAX/PAGE_SIZE)</literal></>
4258 4259
      </row>

4260 4261 4262
      <row>
       <entry><varname>SHMSEG</></>
       <entry>Maximum number of shared memory segments per process</>
P
Peter Eisentraut 已提交
4263
       <entry>only 1 segment is needed, but the default is much higher</>
4264 4265 4266 4267 4268
      </row>

       <row>
        <entry><varname>SHMMNI</></>
        <entry>Maximum number of shared memory segments system-wide</>
B
Bruce Momjian 已提交
4269
        <entry>like <varname>SHMSEG</> plus room for other applications</>
4270 4271 4272 4273 4274
       </row>

       <row>
        <entry><varname>SEMMNI</></>
        <entry>Maximum number of semaphore identifiers (i.e., sets)</>
4275
        <entry>at least <literal>ceil(max_connections / 16)</literal></>
4276 4277 4278 4279 4280
       </row>

       <row>
        <entry><varname>SEMMNS</></>
        <entry>Maximum number of semaphores system-wide</>
4281
        <entry><literal>ceil(max_connections / 16) * 17</literal> plus room for other applications</>
4282 4283 4284 4285 4286
       </row>

       <row>
        <entry><varname>SEMMSL</></>
        <entry>Maximum number of semaphores per set</>
4287
        <entry>at least 17</>
4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298
       </row>

       <row>
        <entry><varname>SEMMAP</></>
        <entry>Number of entries in semaphore map</>
        <entry>see text</>
       </row>

       <row>
        <entry><varname>SEMVMX</></>
        <entry>Maximum value of semaphore</>
T
Tom Lane 已提交
4299
        <entry>at least 1000 (The default is often 32767, don't change unless forced to)</>
4300 4301 4302 4303 4304 4305 4306 4307
       </row>

     </tbody>
    </tgroup>
   </table>


   <para>
4308 4309 4310 4311
    <indexterm><primary>SHMMAX</primary></indexterm> The most important
    shared memory parameter is <varname>SHMMAX</>, the maximum size, in
    bytes, of a shared memory segment. If you get an error message from
    <function>shmget</> like <errorname>Invalid argument</>, it is
T
Tom Lane 已提交
4312
    likely that this limit has been exceeded. The size of the required
4313 4314 4315 4316 4317
    shared memory segment varies both with the number of requested
    buffers (<option>-B</> option) and the number of allowed connections
    (<option>-N</> option), although the former is the most significant.
    (You can, as a temporary solution, lower these settings to eliminate
    the failure.) As a rough approximation, you can estimate the
T
Tom Lane 已提交
4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328
    required segment size as suggested in <xref
    linkend="sysvipc-parameters">.  Any error message you might get will
    contain the size of the failed allocation request.
   </para>

   <para>
    Some systems also have a limit on the total amount of shared memory in
    the system (<varname>SHMALL</>).  Make sure this is large enough
    for <productname>PostgreSQL</> plus any other applications that
    are using shared memory segments.  (Caution: <varname>SHMALL</>
    is measured in pages rather than bytes on many systems.)
4329 4330 4331 4332
   </para>

   <para>
    Less likely to cause problems is the minimum size for shared
P
Peter Eisentraut 已提交
4333
    memory segments (<varname>SHMMIN</>), which should be at most
4334
    approximately 256 kB for <productname>PostgreSQL</> (it is
P
Peter Eisentraut 已提交
4335
    usually just 1). The maximum number of segments system-wide
T
Tom Lane 已提交
4336 4337
    (<varname>SHMMNI</>) or per-process (<varname>SHMSEG</>) are unlikely
    to cause a problem unless your system has them set to zero.
4338 4339 4340
   </para>

   <para>
4341
    <productname>PostgreSQL</> uses one semaphore per allowed connection
P
Peter Eisentraut 已提交
4342 4343
    (<option>-N</> option), in sets of 16.  Each such set will also
    contain a 17th semaphore which contains a <quote>magic
4344
    number</quote>, to detect collision with semaphore sets used by
P
Peter Eisentraut 已提交
4345 4346
    other applications. The maximum number of semaphores in the system
    is set by <varname>SEMMNS</>, which consequently must be at least
4347
    as high as <varname>max_connections</> plus one extra for each 16
P
Peter Eisentraut 已提交
4348
    allowed connections (see the formula in <xref
4349
    linkend="sysvipc-parameters">).  The parameter <varname>SEMMNI</>
P
Peter Eisentraut 已提交
4350 4351 4352 4353
    determines the limit on the number of semaphore sets that can
    exist on the system at one time.  Hence this parameter must be at
    least <literal>ceil(max_connections / 16)</>. Lowering the number
    of allowed connections is a temporary workaround for failures,
4354 4355
    which are usually confusingly worded <errorname>No space
    left on device</>, from the function <function>semget</>.
4356 4357 4358
   </para>

   <para>
4359
    In some cases it might also be necessary to increase
4360
    <varname>SEMMAP</> to be at least on the order of
4361 4362 4363 4364 4365 4366 4367 4368
    <varname>SEMMNS</>. This parameter defines the size of the semaphore
    resource map, in which each contiguous block of available semaphores
    needs an entry. When a semaphore set is freed it is either added to
    an existing entry that is adjacent to the freed block or it is
    registered under a new map entry. If the map is full, the freed
    semaphores get lost (until reboot). Fragmentation of the semaphore
    space could over time lead to fewer available semaphores than there
    should be.
4369 4370 4371 4372
   </para>

   <para>
    The <varname>SEMMSL</> parameter, which determines how many
P
Peter Eisentraut 已提交
4373
    semaphores can be in a set, must be at least 17 for
4374
    <productname>PostgreSQL</>.
4375 4376 4377
   </para>

   <para>
T
Tom Lane 已提交
4378 4379
    Various other settings related to <quote>semaphore undo</>, such as
    <varname>SEMMNU</> and <varname>SEMUME</>, are not of concern
4380
    for <productname>PostgreSQL</>.
4381 4382 4383 4384 4385
   </para>

    <variablelist>

     <varlistentry>
4386
      <term><systemitem class="osname">BSD/OS</></term>
P
Peter Eisentraut 已提交
4387
      <indexterm><primary>BSD/OS</><secondary>IPC configuration</></>
4388 4389 4390 4391 4392 4393
      <listitem>
       <formalpara>
        <title>Shared Memory</>
        <para>
         By default, only 4 MB of shared memory is supported. Keep in
         mind that shared memory is not pageable; it is locked in RAM.
4394
         To increase the amount of shared memory supported by your
T
Tom Lane 已提交
4395 4396
         system, add something like the following to your kernel configuration
         file:
4397
<programlisting>
4398
options "SHMALL=8192"
B
Bruce Momjian 已提交
4399
options "SHMMAX=\(SHMALL*PAGE_SIZE\)"
4400
</programlisting>
T
Tom Lane 已提交
4401 4402 4403 4404
         <varname>SHMALL</> is measured in 4KB pages, so a value of
         1024 represents 4 MB of shared memory. Therefore the above increases
         the maximum shared memory area to 32 MB.
         For those running 4.3 or later, you will probably also need to increase
4405 4406
         <varname>KERNEL_VIRTUAL_MB</> above the default <literal>248</>.
         Once all changes have been made, recompile the kernel, and reboot.
4407 4408 4409 4410
        </para>
       </formalpara>

       <para>
4411 4412
        For those running 4.0 and earlier releases, use <command>bpatch</>
        to find the <varname>sysptsize</> value in the current
4413
        kernel. This is computed dynamically at boot time.
4414 4415 4416 4417
<screen>
$ <userinput>bpatch -r sysptsize</>
<computeroutput>0x9 = 9</>
</screen>
4418
        Next, add <varname>SYSPTSIZE</> as a hard-coded value in the
4419
        kernel configuration file. Increase the value you found using
4420
        <command>bpatch</>. Add 1 for every additional 4 MB of
4421 4422
        shared memory you desire.
<programlisting>
4423
options "SYSPTSIZE=16"
4424
</programlisting>
4425
        <varname>sysptsize</> cannot be changed by <command>sysctl</command>.
4426 4427 4428 4429 4430
       </para>

       <formalpara>
        <title>Semaphores</>
        <para>
T
Tom Lane 已提交
4431 4432 4433
         You will probably want to increase the number of semaphores
         as well; the default system total of 60 will only allow about
         50 <productname>PostgreSQL</productname> connections.  Set the
4434
         values you want in your kernel configuration file, e.g.:
4435 4436 4437 4438
<programlisting>
options "SEMMNI=40"
options "SEMMNS=240"
</programlisting>
4439 4440
        </para>
       </formalpara>
4441 4442 4443 4444 4445
      </listitem>
     </varlistentry>


     <varlistentry>
4446
      <term><systemitem class="osname">FreeBSD</></term>
4447 4448 4449 4450 4451 4452 4453 4454 4455
      <indexterm><primary>FreeBSD</><secondary>IPC configuration</></>
      <listitem>
       <para>
        The default settings are only suitable for small installations
        (for example, default <varname>SHMMAX</varname> is 32
        MB). Changes can be made via the <command>sysctl</command> or
        <command>loader</command> interfaces.  The following
        parameters can be set using <command>sysctl</command>:
<screen>
4456 4457 4458
<prompt>$</prompt> <userinput>sysctl -w kern.ipc.shmall=32768</userinput>
<prompt>$</prompt> <userinput>sysctl -w kern.ipc.shmmax=134217728</userinput>
<prompt>$</prompt> <userinput>sysctl -w kern.ipc.semmap=256</userinput>
4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493
</screen>
        To have these settings persist over reboots, modify
        <filename>/etc/sysctl.conf</filename>.
       </para>

       <para>
        The remaining sempahore settings are read-only as far as
        <command>sysctl</command> is concerned, but can be changed
        before boot using the <command>loader</command> prompt:
<screen>
<prompt>(loader)</prompt> <userinput>set kern.ipc.semmni=256</userinput>
<prompt>(loader)</prompt> <userinput>set kern.ipc.semmns=512</userinput>
<prompt>(loader)</prompt> <userinput>set kern.ipc.semmnu=256</userinput>
</screen>
        Similarly these can be saved between reboots in
        <filename>/boot/loader.conf</filename>.
       </para>

       <para>
        You might also want to configure your kernel to lock shared
        memory into RAM and prevent it from being paged out to swap.
        This can be accomplished using the <command>sysctl</command>
        setting <literal>kern.ipc.shm_use_phys</literal>.
       </para>

       <para>
        <systemitem class="osname">FreeBSD</> versions before 4.0 work like 
        <systemitem class="osname">NetBSD</> and <systemitem class="osname">
        OpenBSD</> (see below), except that the configuration file uses the 
        keyword "options" instead of "option".
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
4494 4495
      <term><systemitem class="osname">NetBSD</></term>
      <term><systemitem class="osname">OpenBSD</></term>
P
Peter Eisentraut 已提交
4496 4497
      <indexterm><primary>NetBSD</><secondary>IPC configuration</></>
      <indexterm><primary>OpenBSD</><secondary>IPC configuration</></>
4498 4499 4500 4501 4502 4503
      <listitem>
       <para>
        The options <varname>SYSVSHM</> and <varname>SYSVSEM</> need
        to be enabled when the kernel is compiled. (They are by
        default.) The maximum size of shared memory is determined by
        the option <varname>SHMMAXPGS</> (in pages). The following
T
Tom Lane 已提交
4504
        shows an example of how to set the various parameters:
4505
<programlisting>
4506 4507 4508 4509 4510 4511 4512 4513 4514
option         SYSVSHM
option         SHMMAXPGS=4096
option         SHMSEG=256

option         SYSVSEM
option         SEMMNI=256
option         SEMMNS=512
option         SEMMNU=256
option         SEMMAP=256
4515 4516
</programlisting>
       </para>
4517

4518
       <para>
P
Peter Eisentraut 已提交
4519 4520
        You might also want to configure your kernel to lock shared
        memory into RAM and prevent it from being paged out to swap.
4521 4522
        This can be accomplished using the <command>sysctl</command>
        setting <literal>kern.ipc.shm_use_phys</literal>.
P
Peter Eisentraut 已提交
4523
       </para>
4524 4525 4526 4527 4528
      </listitem>
     </varlistentry>


     <varlistentry>
4529
      <term><systemitem class="osname">HP-UX</></term>
P
Peter Eisentraut 已提交
4530
      <indexterm><primary>HP-UX</><secondary>IPC configuration</></>
4531 4532 4533
      <listitem>
       <para>
        The default settings tend to suffice for normal installations.
P
Peter Eisentraut 已提交
4534
        On <productname>HP-UX</> 10, the factory default for
4535 4536 4537 4538
        <varname>SEMMNS</> is 128, which might be too low for larger
        database sites.
       </para>
       <para>
4539
        <acronym>IPC</> parameters can be set in the <application>System
4540 4541
        Administration Manager</> (<acronym>SAM</>) under
        <menuchoice><guimenu>Kernel
4542 4543
        Configuration</><guimenuitem>Configurable Parameters</></>. Hit
        <guibutton>Create A New Kernel</> when you're done.
4544 4545 4546 4547 4548 4549
       </para>
      </listitem>
     </varlistentry>


     <varlistentry>
4550
      <term><systemitem class="osname">Linux</></term>
P
Peter Eisentraut 已提交
4551
      <indexterm><primary>Linux</><secondary>IPC configuration</></>
4552 4553
      <listitem>
       <para>
4554 4555 4556 4557 4558 4559 4560
        The default settings are only suitable for small installations 
        (the default max segment size is 32 MB). However the remaining
        defaults are quite generously sized, and usually do not require
        changes. The max segment size can be changed via the 
        <command>sysctl</command> interface. For example, to allow 128 MB, 
        and explicitly set the maximum total shared memory size to 2097152 
        pages (the default):
P
Peter Eisentraut 已提交
4561
<screen>
4562 4563
<prompt>$</prompt> <userinput>sysctl -w kernel.shmmax=134217728</userinput>
<prompt>$</prompt> <userinput>sysctl -w kernel.shmall=2097152</userinput>
P
Peter Eisentraut 已提交
4564
</screen>
4565
        In addition these settings can be saved between reboots in 
4566
        <filename>/etc/sysctl.conf</filename>.
P
Peter Eisentraut 已提交
4567 4568
       </para>

4569
       <para>
4570 4571 4572 4573 4574 4575 4576
        Older distributions may not have the <command>sysctl</command> program,
        but equivalent changes can be made by manipulating the 
        <filename>/proc</filename> filesystem:
<screen>
<prompt>$</prompt> <userinput>echo 134217728 &gt;/proc/sys/kernel/shmmax</userinput>
<prompt>$</prompt> <userinput>echo 2097152 &gt;/proc/sys/kernel/shmall</userinput>
</screen>
4577 4578 4579 4580 4581
       </para>
      </listitem>
     </varlistentry>


B
Bruce Momjian 已提交
4582
     <varlistentry>
4583
      <term><systemitem class="osname">MacOS X</></term>
P
Peter Eisentraut 已提交
4584
      <indexterm><primary>MacOS X</><secondary>IPC configuration</></>
B
Bruce Momjian 已提交
4585 4586
      <listitem>
       <para>
4587 4588
        In OS X 10.2 and earlier, edit the file
        <filename>/System/Library/StartupItems/SystemTuning/SystemTuning</>
4589
        and change the values in the following commands:
B
Bruce Momjian 已提交
4590 4591 4592 4593 4594 4595 4596
<programlisting>
sysctl -w kern.sysv.shmmax
sysctl -w kern.sysv.shmmin
sysctl -w kern.sysv.shmmni
sysctl -w kern.sysv.shmseg
sysctl -w kern.sysv.shmall
</programlisting>
4597
        In OS X 10.3, these commands have been moved to <filename>/etc/rc</>
T
Tom Lane 已提交
4598 4599
        and must be edited there.  You'll need to reboot to make changes
        take effect.  Note that <filename>/etc/rc</> is usually
4600 4601
        overwritten by OS X updates (such as 10.3.6 to 10.3.7) so you
        should expect to have to redo your editing after each update.
B
Bruce Momjian 已提交
4602
       </para>
T
Tom Lane 已提交
4603 4604 4605
       <para>
        <varname>SHMALL</> is measured in 4KB pages on this platform.
       </para>
B
Bruce Momjian 已提交
4606 4607 4608 4609
      </listitem>
     </varlistentry>


4610
     <varlistentry>
4611
      <term><systemitem class="osname">SCO OpenServer</></term>
P
Peter Eisentraut 已提交
4612
      <indexterm><primary>SCO OpenServer</><secondary>IPC configuration</></>
4613 4614 4615 4616
      <listitem>
       <para>
        In the default configuration, only 512 kB of shared memory per
        segment is allowed, which is about enough for <option>-B 24 -N
4617
        12</>. To increase the setting, first change to the directory
4618
        <filename>/etc/conf/cf.d</>. To display the current value of
4619
        <varname>SHMMAX</>, run
4620 4621 4622
<programlisting>
./configure -y SHMMAX
</programlisting>
4623
        To set a new value for <varname>SHMMAX</>, run
4624 4625 4626 4627
<programlisting>
./configure SHMMAX=<replaceable>value</>
</programlisting>
        where <replaceable>value</> is the new value you want to use
4628
        (in bytes). After setting <varname>SHMMAX</>, rebuild the kernel:
4629 4630 4631 4632 4633 4634 4635 4636
<programlisting>
./link_unix
</programlisting>
        and reboot.
       </para>
      </listitem>
     </varlistentry>

B
Bruce Momjian 已提交
4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651
     <varlistentry>
      <term><systemitem class="osname">AIX</></term>
      <indexterm><primary>AIX</><secondary>IPC configuration</></>
      <listitem>
       <para>
        At least as of version 5.1, it should not be necessary to do
        any special configuration for such parameters as
        <varname>SHMMAX</varname>, as it appears this is configured to
        allow all memory to be used as shared memory.  That is the
        sort of configuration commonly used for other databases such
        as <application>DB/2</application>.</para>

       <para> It may, however, be necessary to modify the global
       <command>ulimit</command> information in
       <filename>/etc/security/limits</filename>, as the default hard
P
Peter Eisentraut 已提交
4652
       limits for file sizes (<varname>fsize</varname>) and numbers of
B
Bruce Momjian 已提交
4653 4654 4655 4656
       files (<varname>nofiles</varname>) may be too low.
       </para>
      </listitem>
     </varlistentry>      
4657 4658

     <varlistentry>
4659
      <term><systemitem class="osname">Solaris</></term>
P
Peter Eisentraut 已提交
4660
      <indexterm><primary>Solaris</><secondary>IPC configuration</></>
4661 4662
      <listitem>
       <para>
4663 4664
        At least in version 2.6, the default maximum size of a shared
        memory segments is too low for <productname>PostgreSQL</>. The
4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677
        relevant settings can be changed in <filename>/etc/system</>,
        for example:
<programlisting>
set shmsys:shminfo_shmmax=0x2000000
set shmsys:shminfo_shmmin=1
set shmsys:shminfo_shmmni=256
set shmsys:shminfo_shmseg=256

set semsys:seminfo_semmap=256
set semsys:seminfo_semmni=512
set semsys:seminfo_semmns=512
set semsys:seminfo_semmsl=32
</programlisting>
4678
        You need to reboot for the changes to take effect.
4679 4680 4681 4682
       </para>

       <para>
        See also <ulink
4683
        url="http://sunsite.uakom.sk/sunworldonline/swol-09-1997/swol-09-insidesolaris.html"></>
4684 4685 4686 4687 4688 4689 4690 4691
        for information on shared memory under
        <productname>Solaris</>.
       </para>
      </listitem>
     </varlistentry>


     <varlistentry>
4692
      <term><systemitem class="osname">UnixWare</></term>
P
Peter Eisentraut 已提交
4693
      <indexterm><primary>UnixWare</><secondary>IPC configuration</></>
4694 4695 4696 4697 4698 4699 4700 4701 4702 4703
      <listitem>
       <para>
        On <productname>UnixWare</> 7, the maximum size for shared
        memory segments is 512 kB in the default configuration. This
        is enough for about <option>-B 24 -N 12</>. To display the
        current value of <varname>SHMMAX</>, run
<programlisting>
/etc/conf/bin/idtune -g SHMMAX
</programlisting>
        which displays the current, default, minimum, and maximum
4704 4705
        values. To set a new value for <varname>SHMMAX</>,
        run
4706 4707 4708 4709 4710
<programlisting>
/etc/conf/bin/idtune SHMMAX <replaceable>value</>
</programlisting>
        where <replaceable>value</> is the new value you want to use
        (in bytes). After setting <varname>SHMMAX</>, rebuild the
4711
        kernel:
4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722
<programlisting>
/etc/conf/bin/idbuild -B
</programlisting>
        and reboot.
       </para>
      </listitem>
     </varlistentry>

    </variablelist>
  </sect2>

4723 4724 4725 4726 4727

  <sect2>
   <title>Resource Limits</title>

   <para>
4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741
    Unix-like operating systems enforce various kinds of resource limits
    that might interfere with the operation of your
    <productname>PostgreSQL</productname> server. Of particular
    importance are limits on the number of processes per user, the
    number of open files per process, and the amount of memory available
    to each process. Each of these have a <quote>hard</quote> and a
    <quote>soft</quote> limit. The soft limit is what actually counts
    but it can be changed by the user up to the hard limit. The hard
    limit can only be changed by the root user. The system call
    <function>setrlimit</function> is responsible for setting these
    parameters. The shell's built-in command <command>ulimit</command>
    (Bourne shells) or <command>limit</command> (<application>csh</>) is
    used to control the resource limits from the command line. On
    BSD-derived systems the file <filename>/etc/login.conf</filename>
4742 4743
    controls the various resource limits set during login. See the
    operating system documentation for details. The relevant
4744
    parameters are <varname>maxproc</varname>,
4745 4746
    <varname>openfiles</varname>, and <varname>datasize</varname>. For
    example:
4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759
<programlisting>
default:\
...
        :datasize-cur=256M:\
        :maxproc-cur=256:\
        :openfiles-cur=256:\
...
</programlisting>
    (<literal>-cur</literal> is the soft limit.  Append
    <literal>-max</literal> to set the hard limit.)
   </para>

   <para>
4760
    Kernels can also have system-wide limits on some resources.
4761 4762 4763
    <itemizedlist>
     <listitem>
      <para>
4764 4765
      On <productname>Linux</productname>
      <filename>/proc/sys/fs/file-max</filename> determines the
4766
      maximum number of open files that the kernel will support.  It can
4767 4768 4769 4770 4771 4772
      be changed by writing a different number into the file or by
      adding an assignment in <filename>/etc/sysctl.conf</filename>.
      The maximum limit of files per process is fixed at the time the
      kernel is compiled; see
      <filename>/usr/src/linux/Documentation/proc.txt</filename> for
      more information.
4773 4774 4775
      </para>
     </listitem>
    </itemizedlist>
4776 4777 4778
   </para>

   <para>
4779
    The <productname>PostgreSQL</productname> server uses one process
4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793
    per connection so you should provide for at least as many processes
    as allowed connections, in addition to what you need for the rest
    of your system.  This is usually not a problem but if you run
    several servers on one machine things might get tight.
   </para>

   <para>
    The factory default limit on open files is often set to
    <quote>socially friendly</quote> values that allow many users to
    coexist on a machine without using an inappropriate fraction of
    the system resources.  If you run many servers on a machine this
    is perhaps what you want, but on dedicated servers you may want to
    raise this limit.
   </para>
4794 4795 4796

   <para>
    On the other side of the coin, some systems allow individual
4797 4798
    processes to open large numbers of files; if more than a few
    processes do so then the system-wide limit can easily be exceeded.
4799 4800 4801
    If you find this happening, and you do not want to alter the
    system-wide limit, you can set <productname>PostgreSQL</>'s <xref
    linkend="guc-max-files-per-process"> configuration parameter to
4802
    limit the consumption of open files.
4803
   </para>
4804
  </sect2>
4805

P
Peter Eisentraut 已提交
4806 4807 4808 4809
  <sect2>
   <title>Linux Memory Overcommit</title>

   <para>
4810
    In Linux 2.4 and later, the default virtual memory behavior is not
4811 4812 4813 4814 4815
    optimal for <productname>PostgreSQL</productname>. Because of the
    way that the kernel implements memory overcommit, the kernel may
    terminate the <productname>PostgreSQL</productname> server (the
    <filename>postmaster</filename> process) if the memory demands of
    another process cause the system to run out of virtual memory.
P
Peter Eisentraut 已提交
4816 4817 4818
   </para>

   <para>
4819 4820 4821
    If this happens, you will see a kernel message that looks like
    this (consult your system documentation and configuration on where
    to look for such a message):
P
Peter Eisentraut 已提交
4822 4823 4824
<programlisting>
Out of Memory: Killed process 12345 (postmaster). 
</programlisting>
4825
    This indicates that the <filename>postmaster</filename> process
4826 4827 4828
    has been terminated due to memory pressure.
    Although existing database connections will continue to function
    normally, no new connections will be accepted.  To recover,
4829
    <productname>PostgreSQL</productname> will need to be restarted.
P
Peter Eisentraut 已提交
4830 4831 4832
   </para>

   <para>
4833 4834
    One way to avoid this problem is to run
    <productname>PostgreSQL</productname>
P
Peter Eisentraut 已提交
4835
    on a machine where you can be sure that other processes will not
4836 4837 4838 4839 4840 4841
    run the machine out of memory.
   </para>

   <para>
    On Linux 2.6 and later, a better solution is to modify the kernel's
    behavior so that it will not <quote>overcommit</> memory.  This is
P
Peter Eisentraut 已提交
4842
    done by selecting strict overcommit mode via <command>sysctl</command>:
P
Peter Eisentraut 已提交
4843 4844 4845
<programlisting>
sysctl -w vm.overcommit_memory=2
</programlisting>
4846 4847 4848 4849
    or placing an equivalent entry in <filename>/etc/sysctl.conf</>.
    You may also wish to modify the related setting 
    <literal>vm.overcommit_ratio</>.  For details see the kernel documentation
    file <filename>Documentation/vm/overcommit-accounting</>.
P
Peter Eisentraut 已提交
4850 4851 4852
   </para>

   <para>
4853
    Some vendors' Linux 2.4 kernels are reported to have early versions
P
Peter Eisentraut 已提交
4854
    of the 2.6 overcommit <command>sysctl</command> parameter.  However, setting
4855 4856 4857 4858 4859 4860 4861 4862 4863 4864
    <literal>vm.overcommit_memory</> to 2
    on a kernel that does not have the relevant code will make
    things worse not better.  It is recommended that you inspect
    the actual kernel source code (see the function
    <function>vm_enough_memory</> in the file <filename>mm/mmap.c</>)
    to verify what is supported in your copy before you try this in a 2.4
    installation.  The presence of the <filename>overcommit-accounting</>
    documentation file should <emphasis>not</> be taken as evidence that the
    feature is there.  If in any doubt, consult a kernel expert or your
    kernel vendor.
P
Peter Eisentraut 已提交
4865 4866
   </para>
  </sect2>
4867 4868 4869
 </sect1>


4870
 <sect1 id="postmaster-shutdown">
4871
  <title>Shutting Down the Server</title>
4872

P
Peter Eisentraut 已提交
4873 4874 4875 4876
  <indexterm zone="postmaster-shutdown">
   <primary>shutdown</>
  </indexterm>

4877
  <para>
4878
   There are several ways to shut down the database server. You control
4879 4880 4881
   the type of shutdown by sending different signals to the
   <command>postmaster</command> process.

4882 4883
   <variablelist>
    <varlistentry>
P
Peter Eisentraut 已提交
4884
     <term><systemitem>SIGTERM</systemitem><indexterm><primary>SIGTERM</></></term>
4885 4886
     <listitem>
      <para>
4887 4888 4889 4890
       After receiving <systemitem>SIGTERM</systemitem>, the server
       disallows new connections, but lets existing sessions end their
       work normally. It shuts down only after all of the sessions
       terminate normally. This is the <firstterm>Smart
4891
       Shutdown</firstterm>.
4892 4893 4894 4895 4896
      </para>
     </listitem>
    </varlistentry>

    <varlistentry>
P
Peter Eisentraut 已提交
4897
     <term><systemitem>SIGINT</systemitem><indexterm><primary>SIGINT</></></term>
4898 4899
     <listitem>
      <para>
4900 4901
       The server disallows new connections and sends all existing
       server processes <systemitem>SIGTERM</systemitem>, which will cause them
4902
       to abort their current transactions and exit promptly. It then
4903
       waits for the server processes to exit and finally shuts down. This is the
4904
       <firstterm>Fast Shutdown</firstterm>.
4905 4906 4907 4908 4909
      </para>
     </listitem>
    </varlistentry>

    <varlistentry>
P
Peter Eisentraut 已提交
4910
     <term><systemitem>SIGQUIT</systemitem><indexterm><primary>SIGQUIT</></></term>
4911
     <listitem>
4912 4913 4914 4915
      <para>
      This is the <firstterm>Immediate Shutdown</firstterm>, which
      will cause the <command>postmaster</command> process to send a
      <systemitem>SIGQUIT</systemitem> to all child processes and exit
T
Tom Lane 已提交
4916
      immediately, without properly shutting itself down. The child processes
4917 4918 4919 4920
      likewise exit immediately upon receiving
      <systemitem>SIGQUIT</systemitem>. This will lead to recovery (by
      replaying the WAL log) upon next start-up. This is recommended
      only in emergencies.
4921 4922 4923 4924
      </para>
     </listitem>
    </varlistentry>
   </variablelist>
4925
  </para>
4926

T
Tom Lane 已提交
4927 4928 4929 4930
  <para>
   The <xref linkend="app-pg-ctl"> program provides a convenient
   interface for sending these signals to shut down the server.
  </para>
4931

4932
  <para>
T
Tom Lane 已提交
4933 4934 4935 4936
   Alternatively, you can send the signal directly using <command>kill</>.
   The <acronym>PID</> of the <command>postmaster</command> process can be
   found using the <command>ps</command> program, or from the file
   <filename>postmaster.pid</filename> in the data directory. For
4937 4938
   example, to do a fast shutdown:
<screen>
P
Peter Eisentraut 已提交
4939
$ <userinput>kill -INT `head -1 /usr/local/pgsql/data/postmaster.pid`</userinput>
4940 4941
</screen>
  </para>
T
Tom Lane 已提交
4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954

   <important>
    <para>
     It is best not to use <systemitem>SIGKILL</systemitem> to shut down
     the server.  Doing so will prevent the server from releasing
     shared memory and semaphores, which may then have to be done
     manually before a new server can be started.  Furthermore,
     <systemitem>SIGKILL</systemitem> kills the <command>postmaster</command>
     process without letting it relay the signal to its subprocesses,
     so it will be necessary to kill the individual subprocesses by hand as
     well.
    </para>
   </important>
4955 4956
 </sect1>

4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111
 <sect1 id="encryption-approaches">
  <title>Use of Encryption in <productname>PostgreSQL</productname></title>

  <indexterm zone="encryption-approaches">
   <primary>encryption</primary>
  </indexterm>

  <para>
   <productname>PostgreSQL</productname> offers encryption at several
   levels, and provides flexibility in protecting data from disclosure
   due to database server theft, unscrupulous administrators, and
   insecure networks. Encryption might also be required by government
   regulation, for example, for medical records or financial
   transactions.
  </para>
   
  <variablelist>

  <varlistentry>
   <term>Password Storage Encryption</term>
   <listitem>

    <para>
     By default, database user passwords are stored as MD5 hashes, so
     the administrator can not determine the actual password assigned
     to the user. If MD5 encryption is used for client authentication,
     the unencrypted password is never even temporarily present on the
     server because the client MD5 encrypts it before being sent across
     the network. MD5 is a one-way encryption --- there is no
     decryption algorithm.
    </para>
   </listitem>
  </varlistentry>

  <varlistentry>
   <term>Encryption For Specific Columns</term>

   <listitem>
    <para>
     The <filename>/contrib</> function library
     <function>pgcrypto</function> allows certain fields to be stored
     encrypted. This is useful if only some of the data is sensitive.
     The client supplies the decryption key and the data is decrypted
     on the server and then sent to the client.
    </para>
     
    <para>
     The decrypted data and the decryption key are present on the
     server for a brief time while it is being decrypted and
     communicated between the client and server. This presents a brief
     moment where the data and keys can be intercepted by someone with
     complete access to the database server, such as the system
     administrator.
    </para>
   </listitem>
  </varlistentry>

  <varlistentry>
   <term>Data Partition Encryption</term>

   <listitem>
    <para>
     On Linux, encryption can be layered on top of a filesystem mount
     using a <quote>loopback device</quote>. This allows an entire
     filesystem partition be encrypted on disk, and decrypted by the
     operating system. On FreeBSD, the equivalent facility is called
     GEOM Based Disk Encryption, or <acronym>gbde</acronym>.
    </para>

    <para>
     This mechanism prevents unecrypted data from being read from the
     drives if the drives or the entire computer is stolen. This
     mechanism does nothing to protect against attacks while the
     filesystem is mounted, because when mounted, the operating system
     provides a unencrypted view of the data. However, to mount the
     filesystem, you need some way for the encryption key to be passed
     to the operating system, and sometimes the key is stored somewhere
     on the host that mounts the disk.
    </para>
   </listitem>
  </varlistentry>

  <varlistentry>
   <term>Encrypting Passwords Across A Network</term>

   <listitem>
     <para>
      The <literal>MD5</> authentication method double-encrypts the
      password on the client before sending it to the server. It first
      MD5 encrypts it based on the user name, and then encrypts it
      based on a random salt sent by the server when the database
      connection was made. It is this double-encrypted value that is
      sent over the network to the server. Double-encryption not only
      prevents the password from being discovered, it also prevents
      another connection from replaying the same double-encryption
      value in a later connection.
     </para>
    </listitem>
  </varlistentry>

  <varlistentry>
   <term>Encrypting Data Across A Network</term>

    <listitem>
     <para>
      SSL connections encrypt all data sent across the network: the
      password, the queries, and the data returned. The
      <filename>pg_hba.conf</> file allows administrators to specify
      which hosts can use non-encrypted connections (<literal>host</>)
      and which require SSL-encrypted connections
      (<literal>hostssl</>). Also, clients can specify that they
      connect to servers only via SSL. <application>Stunnel</> or
      <application>SSH</> can also be used to encrypt transmissions.
     </para>
    </listitem>
  </varlistentry>

  <varlistentry>
   <term>SSL Host Authentication</term>

   <listitem>
    <para> 
     It is possible for both the client and server to provide SSL keys
     or certificates to each other. It takes some extra configuration
     on each side, but this provides stronger verification of identity
     than the mere use of passwords. It prevent a computer from
     pretending to be the server just long enough to read the password
     send by the client. It also helps prevent 'man in the middle"
     attacks where a computer between the client and server pretends to
     be the server and reads and passes all data between the client and
     server.
    </para>
   </listitem>
  </varlistentry>

  <varlistentry>
   <term>Client-Side Encryption</term>

   <listitem>
    <para>
     If the system administrator can not be trusted, it is necessary
     for the client to encrypt the data; this way, unencrypted data
     never appears on the database server. Data is encrypted on the
     client before being sent to the server, and database results have
     to be decrypted on the client before being used. Peter Wayner's
     book, <citation>Translucent Databases</citation>, discusses how to
     do this in considerable detail.
    </para>
   </listitem>
  </varlistentry>

  </variablelist>

 </sect1>

5112
 <sect1 id="ssl-tcp">
5113
  <title>Secure TCP/IP Connections with SSL</title>
5114

5115 5116 5117 5118
  <indexterm zone="ssl-tcp">
   <primary>SSL</primary>
  </indexterm>

5119
  <para>
5120 5121
   <productname>PostgreSQL</> has native support for using
   <acronym>SSL</> connections to encrypt client/server communications
5122 5123 5124 5125
   for increased security. This requires that
   <productname>OpenSSL</productname> is installed on both client and
   server systems and that support in <productname>PostgreSQL</> is
   enabled at build time (see <xref linkend="installation">).
5126 5127 5128
  </para>

  <para>
5129 5130
   With <acronym>SSL</> support compiled in, the
   <productname>PostgreSQL</> server can be started with
5131
   <acronym>SSL</> enabled by setting the parameter
T
Tom Lane 已提交
5132 5133
   <xref linkend="guc-ssl"> to <literal>on</> in
   <filename>postgresql.conf</>. When
5134 5135
   starting in <acronym>SSL</> mode, the server will look for the
   files <filename>server.key</> and <filename>server.crt</> in the
T
Tom Lane 已提交
5136
   data directory, which must contain the server private key
5137
   and certificate, respectively. These files must be set up correctly
5138 5139 5140
   before an <acronym>SSL</>-enabled server can start. If the private key is
   protected with a passphrase, the server will prompt for the
   passphrase and will not start until it has been entered.
5141 5142 5143
  </para>

  <para>
5144
   The server will listen for both standard and <acronym>SSL</>
5145
   connections on the same TCP port, and will negotiate with any
T
Tom Lane 已提交
5146 5147
   connecting client on whether to use <acronym>SSL</>.  By default,
   this is at the client's option; see <xref
5148 5149
   linkend="auth-pg-hba-conf"> about how to set up the server to
   require use of <acronym>SSL</> for some or all connections.
5150 5151 5152 5153
  </para>

  <para>
   For details on how to create your server private key and certificate,
T
Tom Lane 已提交
5154 5155 5156 5157
   refer to the <productname>OpenSSL</> documentation. A
   self-signed certificate can be used for testing, but a
   certificate signed by a certificate authority (<acronym>CA</>)
   (either one of the global
5158 5159 5160 5161
   <acronym>CAs</> or a local one) should be used in production so the
   client can verify the server's identity. To create a quick
   self-signed certificate, use the following
   <productname>OpenSSL</productname> command:
5162
<programlisting>
5163
openssl req -new -text -out server.req
5164
</programlisting>
5165
   Fill out the information that <command>openssl</> asks for. Make sure
5166
   that you enter the local host name as <quote>Common Name</>; the challenge
5167
   password can be left blank. The program will generate a key that is
5168
   passphrase protected; it will not accept a passphrase that is less
5169 5170
   than four characters long. To remove the passphrase (as you must if
   you want automatic start-up of the server), run the commands
5171
<programlisting>
5172 5173
openssl rsa -in privkey.pem -out server.key
rm privkey.pem
5174
</programlisting>
5175
   Enter the old passphrase to unlock the existing key. Now do
5176
<programlisting>
5177 5178
openssl req -x509 -in server.req -text -key server.key -out server.crt
chmod og-rwx server.key
5179
</programlisting>
5180
   to turn the certificate into a self-signed certificate and to copy the
P
Peter Eisentraut 已提交
5181
   key and certificate to where the server will look for them.
5182
  </para>
5183 5184 5185

  <para>
   If verification of client certificates is required, place the
5186
   certificates of the <acronym>CA</acronym>(s) you wish to check for in
5187 5188
   the file <filename>root.crt</filename> in the data directory.  When
   present, a client certificate will be requested from the client
5189 5190
   during SSL connection startup, and it must have been signed by one of the
   certificates present in <filename>root.crt</filename>.
5191 5192 5193
  </para>

  <para>
5194 5195 5196 5197 5198 5199 5200 5201 5202 5203
   When the <filename>root.crt</filename> file is not present, client
   certificates will not be requested or checked.  In this mode, SSL
   provides communication security but not authentication.
  </para>

  <para>
   The files <filename>server.key</>, <filename>server.crt</>,
   and <filename>root.crt</filename> are only examined during server
   start; so you must restart the server to make changes in them take
   effect.
5204
  </para>
5205 5206
 </sect1>

5207
 <sect1 id="ssh-tunnels">
5208
  <title>Secure TCP/IP Connections with <application>SSH</application> Tunnels</title>
5209

5210 5211 5212 5213
  <indexterm zone="ssh-tunnels">
   <primary>ssh</primary>
  </indexterm>

5214
  <para>
5215
   One can use <application>SSH</application> to encrypt the network
5216
   connection between clients and a
5217
   <productname>PostgreSQL</productname> server. Done properly, this
T
Tom Lane 已提交
5218 5219
   provides an adequately secure network connection, even for non-SSL-capable
   clients.
5220 5221 5222
  </para>

  <para>
5223
   First make sure that an <application>SSH</application> server is
5224 5225
   running properly on the same machine as the
   <productname>PostgreSQL</productname> server and that you can log in using
5226 5227
   <command>ssh</command> as some user. Then you can establish a secure
   tunnel with a command like this from the client machine:
5228
<programlisting>
5229
ssh -L 3333:foo.com:5432 joe@foo.com
5230 5231 5232
</programlisting>
   The first number in the <option>-L</option> argument, 3333, is the
   port number of your end of the tunnel; it can be chosen freely. The
5233
   second number, 5432, is the remote end of the tunnel: the port
T
Tom Lane 已提交
5234
   number your server is using. The name or IP address between
5235 5236 5237 5238 5239 5240 5241 5242
   the port numbers is the host with the database server you are going
   to connect to. In order to connect to the database server using
   this tunnel, you connect to port 3333 on the local machine:
<programlisting>
psql -h localhost -p 3333 template1
</programlisting>
   To the database server it will then look as though you are really
   user <literal>joe@foo.com</literal> and it will use whatever
T
Tom Lane 已提交
5243 5244 5245 5246 5247 5248 5249 5250 5251
   authentication procedure was configured for connections from this
   user and host.  Note that the server will not think the connection is
   SSL-encrypted, since in fact it is not encrypted between the
   <application>SSH</application> server and the
   <productname>PostgreSQL</productname> server.  This should not pose any
   extra security risk as long as they are on the same machine.
  </para>
  <para>
   In order for the
5252
   tunnel setup to succeed you must be allowed to connect via
5253
   <command>ssh</command> as <literal>joe@foo.com</literal>, just
5254
   as if you had attempted to use <command>ssh</command> to set up a
5255 5256 5257
   terminal session.
  </para>

5258 5259
  <tip>
   <para>
5260
    Several other applications exist that can provide secure tunnels using
5261 5262 5263 5264
    a procedure similar in concept to the one just described.
   </para>
  </tip>

5265
 </sect1>
5266

5267
</chapter>
5268 5269 5270

<!-- Keep this comment at the end of the file
Local variables:
5271
mode:sgml
5272 5273 5274 5275 5276 5277 5278 5279 5280
sgml-omittag:nil
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:"./reference.ced"
sgml-exposed-tags:nil
5281
sgml-local-catalogs:("/usr/lib/sgml/catalog")
5282 5283 5284
sgml-local-ecat-files:nil
End:
-->