runtime.sgml 112.9 KB
Newer Older
1
<!--
2
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.155 2002/11/15 02:44:50 momjian Exp $
3 4
-->

5
<Chapter Id="runtime">
6
 <Title>Server Run-time Environment</Title>
7 8 9 10 11 12 13

 <Para>
  This chapter discusses how to set up and run the database server
  and the interactions with the operating system.
 </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>
21 22 23 24 25 26 27 28
   As with any other server daemon that is connected to outside world,
   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
   daemons. (For example, using the user <quote>nobody</quote> is a bad
   idea.) It is not advisable to install executables owned by
   this user because compromised systems could then modify their own 
   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
34 35
   name <systemitem>postgres</systemitem> is often used but is by no
   means required.
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>.
54 55 56 57
   (<acronym>SQL</acronym> uses the term catalog cluster instead.) A
   database cluster is a collection of databases is accessible by a
   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
60 61
   used for actual work.  (See <xref linkend="managing-databases"> for information
   about creating databases.)
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 72 73 74 75
   <filename>/var/lib/pgsql/data</filename> are popular. To initialize a
   database cluster, use the command <command>initdb</command>, which is
   installed with <productname>PostgreSQL</productname>. The desired
   file system location of your database system is indicated by the
   <option>-D</option> option, for example
76
<screen>
P
Peter Eisentraut 已提交
77
<prompt>$</> <userinput>initdb -D /usr/local/pgsql/data</userinput>
78
</screen>
79 80 81
   Note that you must execute this command while logged into the
   <productname>PostgreSQL</productname> user account, which is
   described in the previous section.
82
  </para>
83

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

  <para>
   <command>initdb</command> will attempt to create the directory you
96 97 98 99 100 101
   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:
102 103 104 105
<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 已提交
106
postgres$ <userinput>initdb -D /usr/local/pgsql/data</userinput>
107 108
</screen>
  </para>
109

110 111
  <para>
   <command>initdb</command> will refuse to run if the data directory
112
   looks like it it has already been initialized.</para>
113 114 115

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

122 123
  <para>
   However, while the directory contents are secure, the default
124
   client authentication setup allows any local user to connect to the
125 126 127 128
   database and even become the database superuser. If you don't trust
   other local users, we recommend you use <command>initdb</command>'s
   <option>-W</option> or <option>--pwprompt</option> option to assign a
   password to the database superuser. After <command>initdb</command>,
129
   modify the <filename>pg_hba.conf</filename> file to use <literal>md5</> or
130 131 132 133
   <literal>password</> instead of <literal>trust</> authentication
   <emphasis>before</> you start the server for the first time. (Other,
   approaches include using <literal>ident</literal> authentication or
   file system permissions to restrict connections. See <xref
134
   linkend="client-authentication"> for more information.)
135 136
  </para>

137
  <para>
138
   <indexterm><primary>locale</></>
P
Peter Eisentraut 已提交
139
   <indexterm><primary>LC_COLLATE</></>
140 141 142 143 144 145
   <command>initdb</command> also initializes the default 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">.  One surprise you might encounter while running
146
   <command>initdb</command> is a notice similar to this:
147
<screen>
148 149 150 151
The database cluster will be initialized with locale de_DE.
This locale setting will prevent the use of indexes for pattern matching
operations.  If that is a concern, rerun initdb with the collation order
set to "C".  For more information see the Administrator's Guide.
152
</screen>
153 154
   This is intended to warn you that the currently selected locale
   will cause indexes to be sorted in an order that prevents them from
155
   being used for <literal>LIKE</> and regular-expression searches. If you need
156 157 158 159 160 161 162 163
   good performance in such searches, you should set your current
   locale to <literal>C</> and re-run <command>initdb</command>, e.g.,
   by running <literal>initdb --lc-collate=C</literal>. The sort
   order used within a particular database cluster is set by
   <command>initdb</command> and cannot be changed later, short of
   dumping all data, rerunning <command>initdb</command>, and
   reloading the data. So it's important to make this choice correctly
   the first time.
164
  </para>
165 166 167
 </sect1>

 <sect1 id="postmaster-start">
168
  <title>Starting the Database Server</title>
169 170

  <para>
171 172 173
   <indexterm>
    <primary>postmaster</primary>
   </indexterm>
174
   Before anyone can access the database, you must start the database
175
   server. The database server is called
176 177 178 179
   <firstterm>postmaster</firstterm>. The postmaster must know where to
   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:
180
<screen>
P
Peter Eisentraut 已提交
181
$ <userinput>postmaster -D /usr/local/pgsql/data</userinput>
182
</screen>
183 184 185 186 187
   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
   the data directory in the environment variable <envar>PGDATA</envar>.
   If neither of these succeed, it will fail.
188 189 190 191 192 193
  </para>

  <para>
   To start the <application>postmaster</application> in the
   background, use the usual shell syntax:
<screen>
P
Peter Eisentraut 已提交
194
$ <userinput>postmaster -D /usr/local/pgsql/data &gt; logfile 2&gt;&amp;1 &amp;</userinput>
195
</screen>
196 197 198 199 200
   It is an important to store the server's <systemitem>stdout</> and
   <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.)
201 202 203
  </para>

  <para>
204 205 206
   <indexterm>
    <primary>TCP/IP</primary>
   </indexterm>
207 208 209 210 211
   The postmaster also takes a number of other command line options. For
   more information, see the reference page and <xref
   linkend="runtime-config"> below. In particular, in order for the
   server to accept TCP/IP connections (rather than just Unix domain
   socket ones), you must specify the <option>-i</option> option.
212 213
  </para>

214
  <para>
215 216 217
   <indexterm>
    <primary>pg_ctl</primary>
   </indexterm>
218
   This shell syntax can get tedious quickly.  Therefore the shell
219 220
   script wrapper <application>pg_ctl</application> is provided to
   simplify some tasks.  For example:
221 222 223 224
<programlisting>
pg_ctl start -l logfile
</programlisting>
   will start the server in the background and put the output into the
225 226 227
   named log file. The <option>-D</option> option has the same meaning
   here as in the postmaster. <application>pg_ctl</application> is also
   capable of stopping the server.
228 229
  </para>

230 231
  <para>
   Normally, you will want to start the database server when the
232
   computer boots. Autostart scripts are operating system-specific.
233 234 235 236
   There are a few distributed with
   <productname>PostgreSQL</productname> in the
   <filename>/contrib/start-scripts</> directory. This may require root
   privileges.
237 238 239
  </para>

  <para>
240 241
   Different systems have different conventions for starting up daemons
   at boot time. Many systems have a file
242
   <filename>/etc/rc.local</filename> or
243 244 245 246 247 248
   <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:
249
<programlisting>
P
Peter Eisentraut 已提交
250
su -c 'pg_ctl start -D /usr/local/pgsql/data -l serverlog' postgres
251 252 253 254
</programlisting>
  </para>

  <para>
255 256 257
   Here are a few more operating system specific suggestions. (Always
   replace these with the proper installation directory and the user
   name.)
258 259 260 261

   <itemizedlist>
    <listitem>
     <para>
262
      For <productname>FreeBSD</productname>, look at the file
263 264
      <filename>contrib/start-scripts/freebsd</filename> in the
      <productname>PostgreSQL</productname> source distribution.
P
Peter Eisentraut 已提交
265
      <indexterm><primary>FreeBSD</></>
266 267 268 269 270 271 272
     </para>
    </listitem>

    <listitem>
     <para>
      On <productname>OpenBSD</productname>, add the following lines
      to the file <filename>/etc/rc.local</filename>:
P
Peter Eisentraut 已提交
273
      <indexterm><primary>OpenBSD</></>
274
<programlisting>
275 276 277 278
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
279 280 281 282 283 284
</programlisting>
     </para>
    </listitem>

    <listitem>
     <para>
285
      On <productname>Linux</productname> systems either add
P
Peter Eisentraut 已提交
286
      <indexterm><primary>Linux</></>
287
<programlisting>
288
/usr/local/pgsql/bin/pg_ctl start -l logfile -D /usr/local/pgsql/data
289
</programlisting>
290
      to <filename>/etc/rc.d/rc.local</filename> or look at the file
291
      <filename>contrib/start-scripts/linux</filename> in the
292
      <productname>PostgreSQL</productname> source distribution.
293 294 295 296 297
     </para>
    </listitem>

    <listitem>
     <para>
298 299 300
      On <productname>NetBSD</productname>, either use the
      <productname>FreeBSD</productname> or
      <productname>Linux</productname> start scripts, depending on
301
      preference. <indexterm><primary>NetBSD</></>
302 303 304 305 306
     </para>
    </listitem>

    <listitem>
     <para>
307
      On <productname>Solaris</productname>, create a file called
308 309
      <filename>/etc/init.d/postgresql</filename> which should contain
      the following line:
P
Peter Eisentraut 已提交
310
      <indexterm><primary>Solaris</></>
311 312 313
<programlisting>
su - postgres -c "/usr/local/pgsql/bin/pg_ctl start -l logfile -D /usr/local/pgsql/data"
</programlisting>
314
      Then, create a symbolic link to it in <filename>/etc/rc3.d</> as
315
      <literal>S99postgresql</>.
316 317 318 319 320
     </para>
    </listitem>
   </itemizedlist>

  </para>
321

322
   <para>
323
    While the <application>postmaster</application> is running, its
324 325 326 327
    <acronym>PID</acronym> is in the file
    <filename>postmaster.pid</filename> in the data directory. This is
    used to prevent multiple postmasters running in the same data
    directory, and can also be used for shutting down the postmaster.
328 329
   </para>

330
   <sect2 id="postmaster-start-failures">
B
Bruce Momjian 已提交
331
    <title>Server Start-up Failures</title>
332 333

    <para>
334 335 336 337 338
     There are several common reasons the postmaster might fail to
     start. Check the postmaster's log file, or start it by hand
     (without redirecting standard output or standard error) and see
     what error messages appear. Some of the error messages are
     self-explanatory, but some are not, as shown below:
339 340 341 342 343 344 345
    </para>

    <para>
<screen>
FATAL: StreamServerPort: bind() failed: Address already in use
        Is another postmaster already running on that port?
</screen>
346 347 348 349 350 351
     This usually means just what it suggests: you tried to start
     another postmaster on the same port where one is already running.
     However, if the kernel error message is not <computeroutput>Address
     already in use</computeroutput> or some variant of that, there may
     be a different problem. For example, trying to start a postmaster
     on a reserved port number may draw something like:
352
<screen>
P
Peter Eisentraut 已提交
353
$ <userinput>postmaster -i -p 666</userinput>
354 355 356 357 358 359
FATAL: StreamServerPort: bind() failed: Permission denied
        Is another postmaster already running on that port?
</screen>
    </para>

    <para>
360
     A message like:
361
<screen>
362
IpcMemoryCreate: shmget(key=5440001, size=83918612, 01600) failed: Invalid argument
363 364
FATAL 1:  ShmemCreate: cannot create region
</screen>
365 366 367
     probably means your kernel's limit on the size of shared memory is
     smaller than the buffer area <productname>PostgreSQL</productname>
     is trying to create (83918612 bytes in this example). Or it could
368
     mean that you don't have System-V-style shared memory support
369 370 371 372 373 374 375
     configured into your kernel at all. As a temporary workaround, you
     can try starting the postmaster with a smaller-than-normal number
     of buffers (<option>-B</option> switch). You will eventually want
     to reconfigure your kernel to increase the allowed shared memory
     size. You may see this message when trying to start multiple
     postmasters on the same machine if their total space requested
     exceeds the kernel limit.
376 377 378
    </para>

    <para>
379
     An error like:
380
<screen>
381
IpcSemaphoreCreate: semget(key=5440026, num=16, 01600) failed: No space left on device
382
</screen>
383 384 385 386
     does <emphasis>not</emphasis> mean you've run out of disk space. It
     means your kernel's limit on the number of 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
387
     starting the postmaster with a reduced number of allowed connections
388 389 390
     (<option>-N</option> switch), but you'll eventually want to
     increase the kernel limit.
    </para>
391

P
Peter Eisentraut 已提交
392
    <para>
393
     If you get an <quote>illegal system call</> error, it is likely that
394 395 396
     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 已提交
397 398
    </para>

399
    <para>
400 401
     Details about configuring <systemitem class="osname">System V</>
     <acronym>IPC</> facilities are given in <xref linkend="sysvipc">.
402
    </para>
403 404 405 406 407 408
   </sect2>

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

    <para>
409 410 411 412 413
     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.
414 415 416 417
    </para>

    <para>
<screen>
418 419 420
psql: could not connect to server: Connection refused
        Is the server running on host server.joe.com and accepting
        TCP/IP connections on port 5432?
421 422 423 424
</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
     communication is attempted. A common mistake is to forget the
P
Peter Eisentraut 已提交
425
     <option>-i</option> option to allow the postmaster to accept TCP/IP
426 427 428 429
     connections.
    </para>

    <para>
430 431
     Alternatively, you'll get this when attempting Unix-socket
     communication to a local postmaster:
432
<screen>
433 434 435
psql: could not connect to server: Connection refused
        Is the server running locally and accepting
        connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
436 437 438 439 440
</screen>
    </para>

    <para>
     The last line is useful in verifying that the client is trying to
441 442 443
     connect to the right place. If there is in fact no postmaster
     running there, the kernel error message will typically be either
     <computeroutput>Connection refused</computeroutput> or
444
     <computeroutput>No such file or directory</computeroutput>, as
445 446 447 448 449
     illustrated. (It is important to realize that
     <computeroutput>Connection refused</computeroutput> in this context
     does <emphasis>not</emphasis> mean that the postmaster got your
     connection request and rejected it -- that case will produce a
     different message, as shown in <xref
450 451 452 453 454 455
     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>
456 457
  </sect1>

458
  <sect1 id="runtime-config">
459
   <Title>Run-time Configuration</Title>
460

461 462 463 464 465
   <indexterm>
    <primary>configuration</primary>
    <secondary>server</secondary>
   </indexterm>

466
   <para>
467 468 469
    There are a lot of configuration parameters that affect the behavior
    of the database system. Here we describe how to set them and the
    following subsections will discuss each in detail.
470 471 472
   </para>

   <para>
473
    All parameter names are case-insensitive. Every parameter takes a
474
    value of one of the four types: Boolean, integer, floating point,
475 476 477 478 479
    and string. Boolean values are <literal>ON</literal>,
    <literal>OFF</literal>, <literal>TRUE</literal>,
    <literal>FALSE</literal>, <literal>YES</literal>,
    <literal>NO</literal>, <literal>1</literal>, <literal>0</literal>
    (case-insensitive) or any non-ambiguous prefix of these.
480 481
   </para>

482
   <para>
483
    One way to set these options is to edit the file
484 485 486
    <filename>postgresql.conf</filename> in the data directory. (A
    default file is installed there.) An example of what this file might
    look like is:
487 488 489 490
<programlisting>
# This is a comment
log_connections = yes
syslog = 2
491
search_path = '$user, public'
492 493
</programlisting>
    As you see, options are one per line. The equal sign between name
494
    and value is optional. Whitespace is insignificant and blank lines
495
    are ignored. Hash marks (<quote>#</quote>) introduce comments
496 497
    anywhere.  Parameter values that are not simple identifiers or
    numbers should be single-quoted.
498 499 500
   </para>

   <para>
501 502 503
    <indexterm>
     <primary>SIGHUP</primary>
    </indexterm>
504 505 506 507 508 509
    The configuration file is reread whenever the postmaster receives a
    <systemitem>SIGHUP</> signal (which is most easily sent by means of
    <literal>pg_ctl reload</>). The postmaster also propagates this
    signal to all currently running backend processes so that existing
    sessions also get the new value. Alternatively, you can send the
    signal to a single backend process directly.
510 511 512
   </para>

   <para>
513
    A second way to set these configuration parameters is to give them
514
    as a command line option to the postmaster, such as:
515
<programlisting>
516
postmaster -c log_connections=yes -c syslog=2
517 518
</programlisting>
    which would have the same effect as the previous example.
519 520
    Command-line options override any conflicting settings in
    <filename>postgresql.conf</filename>.
521 522
   </para>

523 524 525 526 527 528
   <para>
    Occasionally it is also useful to give a command line option to
    one particular backend session only. The environment variable
    <envar>PGOPTIONS</envar> can be used for this purpose on the
    client side:
<programlisting>
529
env PGOPTIONS='-c geqo=off' psql
530
</programlisting>
P
Peter Eisentraut 已提交
531
    (This works for any <application>libpq</>-based client application, not just
532
    <application>psql</application>.) Note that this won't work for
533 534
    options that are fixed when the server is started, such as the port
    number.
535
   </para>
536

537
   <para>
538
    Some options can be changed in individual SQL sessions with the
539
    <command>SET</command> command, for example:
540 541 542 543
<screen>
=&gt; <userinput>SET ENABLE_SEQSCAN TO OFF;</userinput>
</screen>
    See the SQL command language reference for details on the syntax.
544 545 546
   </para>

   <para>
547 548 549 550
    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
    commands <literal>ALTER DATABASE</literal> and <literal>ALTER
551 552 553 554
    USER</literal>, respectively, are used to configure these settings.
    Such per-database settings override anything received from the postmaster
    or the configuration file, and in turn are overridden by per-user
    settings.
555
   </para>
556

557 558 559 560
   <sect2 id="catalog-pg-settings">
    <title>pg_settings</title>
  
    <para>
561
     The <structname>pg_settings</structname> virtual table allows display and update
562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581
     of current session run-time parameters. There is one entry for each of the 
     available parameters provided by <command>SHOW ALL</command>. But it is
     in a form that allows it to be joined with other relations and have a
     selection criteria applied.
    </para>
  
    <para>
     An <command>UPDATE</command> performed on <structname>pg_settings</structname>
     is equivalent to executing the <command>SET</command> command on that named
     parameter. The change only affects the value used by the current session. If
     an <command>UPDATE</command> is issued within a transaction that is later
     aborted, the effects of the <command>UPDATE</command> command disappear when
     the transaction is rolled back. Once the surrounding transaction is
     committed, the effects will persist until the end of the session, unless
     overridden by another <command>UPDATE</command> or <command>SET</command>.
    </para>
  
    <table>
    <title>pg_settings Columns</title>
  
582
    <tgroup cols=3>
583 584 585 586 587 588 589 590 591 592
     <thead>
      <row>
       <entry>Name</entry>
       <entry>Type</entry>
       <entry>Description</entry>
      </row>
     </thead>
 
     <tbody>
      <row>
593
       <entry><literal>name</literal></entry>
594 595 596 597 598
       <entry><type>text</type></entry>
       <entry>The name of a current session run-time parameter</entry>
      </row>
 
      <row>
599
       <entry><literal>setting</literal></entry>
600 601 602 603 604
       <entry><type>text</type></entry>
       <entry>The value of a current session run-time parameter</entry>
      </row>
     </tbody>
    </tgroup>
T
Tom Lane 已提交
605
    </table>
606 607 608

   </sect2>

609 610
   <sect2 id="runtime-config-optimizer">
    <title>Planner and Optimizer Tuning</title>
611

612 613 614
   <para>
    <variablelist>
     <varlistentry>
615
      <term><varname>CPU_INDEX_TUPLE_COST</varname> (<type>floating point</type>)</term>
616 617 618 619 620 621
      <listitem>
       <para>
        Sets the query optimizer's estimate of the cost of processing
	each index tuple during an index scan. This is measured as a
	fraction of the cost of a sequential page fetch.
       </para>
622 623
      </listitem>
     </varlistentry>
624
    
625
     <varlistentry>
626
      <term><varname>CPU_OPERATOR_COST</varname> (<type>floating point</type>)</term>
627 628
      <listitem>
       <para>
629
        Sets the optimizer's estimate of the cost of processing each
630
	operator in a <literal>WHERE</> clause. This is measured as a fraction of
631
	the cost of a sequential page fetch.
632
       </para>
633 634 635 636
      </listitem>
     </varlistentry>
    
     <varlistentry>
637
      <term><varname>CPU_TUPLE_COST</varname> (<type>floating point</type>)</term>
638 639 640 641 642 643 644 645 646
      <listitem>
       <para>
        Sets the query optimizer's estimate of the cost of processing
	each tuple during a query. This is measured as a fraction of
	the cost of a sequential page fetch.
       </para>
      </listitem>
     </varlistentry>
    
647 648 649 650 651 652 653 654 655 656 657 658 659
     <varlistentry>
      <term><varname>DEFAULT_STATISTICS_TARGET</varname> (<type>integer</type>)</term>
      <listitem>
       <para>
        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.
       </para>
      </listitem>
     </varlistentry>
    
660
     <varlistentry>
661
      <term><varname>EFFECTIVE_CACHE_SIZE</varname> (<type>floating point</type>)</term>
662 663
      <listitem>
       <para>
664 665 666 667 668
        Sets the optimizer's assumption about the effective size of the
        disk cache (that is, the portion of the kernel's disk cache that
        will be used for <productname>PostgreSQL</productname> data
        files). This is measured in disk pages, which are normally 8 kB
        each.
669 670 671
       </para>
      </listitem>
     </varlistentry>
672

673
     <varlistentry>
674
      <term><varname>ENABLE_HASHJOIN</varname> (<type>boolean</type>)</term>
675 676 677
      <listitem>
       <para>
        Enables or disables the query planner's use of hash-join plan
678
        types. The default is on. This is used for debugging the
679 680
        query planner.
       </para>
681 682 683 684
      </listitem>
     </varlistentry>

     <varlistentry>
685 686 687 688
      <indexterm>
       <primary>index scan</primary>
      </indexterm>

689
      <term><varname>ENABLE_INDEXSCAN</varname> (<type>boolean</type>)</term>
690 691
      <listitem>
       <para>
P
Peter Eisentraut 已提交
692
        Enables or disables the query planner's use of index-scan plan
693
        types. The default is on. This is used to debugging the
694
        query planner.
695 696 697 698 699
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
700
      <term><varname>ENABLE_MERGEJOIN</varname> (<type>boolean</type>)</term>
701 702
      <listitem>
       <para>
703
        Enables or disables the query planner's use of merge-join plan
704
        types. The default is on. This is used for debugging the
705
        query planner.
706 707 708 709 710
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
711
      <term><varname>ENABLE_NESTLOOP</varname> (<type>boolean</type>)</term>
712 713
      <listitem>
       <para>
714 715 716 717 718
        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
        on. This is used for debugging the query planner.
719 720 721 722
       </para>
      </listitem>
     </varlistentry>

723
     <varlistentry>
724 725 726 727
      <indexterm>
       <primary>sequential scan</primary>
      </indexterm>

728
      <term><varname>ENABLE_SEQSCAN</varname> (<type>boolean</type>)</term>
729 730
      <listitem>
       <para>
731
        Enables or disables the query planner's use of sequential scan
732 733 734 735
        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
        default is on. This is used for debugging the query planner.
736 737 738 739 740
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
741
      <term><varname>ENABLE_SORT</varname> (<type>boolean</type>)</term>
742 743
      <listitem>
       <para>
744 745 746
        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
747 748
	using one if there are other methods available. The default
	is on. This is used for debugging the query planner.
749 750 751 752 753
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
754
      <term><varname>ENABLE_TIDSCAN</varname> (<type>boolean</type>)</term>
755 756
      <listitem>
       <para>
757
        Enables or disables the query planner's use of <acronym>TID</> scan plan
758
        types. The default is on. This is used for debugging the
759
        query planner.
760 761 762 763
       </para>
      </listitem>
     </varlistentry>

764
     <varlistentry>
765 766 767 768 769 770 771 772
      <indexterm>
       <primary>genetic query optimization</primary>
      </indexterm>
      <indexterm>
       <primary>GEQO</primary>
       <see>genetic query optimization</see>
      </indexterm>

773
      <term><varname>GEQO</varname> (<type>boolean</type>)</term>
774 775
      <listitem>
       <para>
776
        Enables or disables genetic query optimization, which is an
777 778 779
        algorithm that attempts to do query planning without exhaustive
        searching. This is on by default. See also the various other
        <varname>GEQO_</varname> settings.
780 781 782 783 784
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
785 786 787 788 789
      <term><varname>GEQO_EFFORT</varname> (<type>integer</type>)</term>
      <term><varname>GEQO_GENERATIONS</varname> (<type>integer</type>)</term>
      <term><varname>GEQO_POOL_SIZE</varname> (<type>integer</type>)</term>
      <term><varname>GEQO_RANDOM_SEED</varname> (<type>integer</type>)</term>
      <term><varname>GEQO_SELECTION_BIAS</varname> (<type>floating point</type>)</term>
790 791
      <listitem>
       <para>
792 793
        Various tuning parameters for the genetic query optimization
        algorithm: The pool size is the number of individuals in one
794 795 796 797 798 799 800 801 802 803 804 805 806 807
        population. Valid values are between 128 and 1024. If it is set
        to 0 (the default) a pool size of 2^(QS+1), where QS is the
        number of FROM items in the query, is taken. The effort is used
        to calculate a default for generations. Valid values are between
        1 and 80, 40 being the default. Generations specifies the number
        of iterations in the algorithm. The number must be a positive
        integer. If 0 is specified then <literal>Effort *
        Log2(PoolSize)</literal> is used. The run time of the algorithm
        is roughly proportional to the sum of pool size and generations.
        The selection bias is the selective pressure within the
        population. Values can be from 1.50 to 2.00; the latter is the
        default. The random seed can be set to get reproducible results
        from the algorithm. If it is set to -1 then the algorithm
        behaves non-deterministically.
808 809 810 811 812
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
813
      <term><varname>GEQO_THRESHOLD</varname> (<type>integer</type>)</term>
814 815
      <listitem>
       <para>
816
        Use genetic query optimization to plan queries with at least
817 818 819 820 821
        this many <literal>FROM</> items involved. (Note that a
        <literal>JOIN</> construct counts as only one <literal>FROM</>
        item.) The default is 11. For simpler queries it is usually best
        to use the deterministic, exhaustive planner. This parameter
        also controls how hard the optimizer will try to merge subquery
822
        <literal>FROM</literal> clauses into the upper query.
823 824 825 826 827
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
828
      <term><varname>RANDOM_PAGE_COST</varname> (<type>floating point</type>)</term>
829 830
      <listitem>
       <para>
831
        Sets the query optimizer's estimate of the cost of a
832 833
        nonsequentially fetched disk page. This is measured as a
        multiple of the cost of a sequential page fetch.
834 835 836
       </para>
      </listitem>
     </varlistentry>
837 838 839 840 841
    </variablelist>
   </para>

   <note>
    <para>
842
     Unfortunately, there is no well-defined method for determining
843 844 845 846 847 848 849
     ideal values for the family of <quote>COST</quote> variables that
     were just described. You are encouraged to experiment and share
     your findings.
    </para>
   </note>

   </sect2>
850

851 852 853 854 855
   <sect2 id="logging">
    <title>Logging and Debugging</title>

   <para>
    <variablelist>
856
     <varlistentry>
857
      <term><varname>CLIENT_MIN_MESSAGES</varname> (<type>string</type>)</term>
858 859
      <listitem>
       <para>
860 861
        This controls how much message detail is written to the
        client.  Valid values are <literal>DEBUG5</>,
862
        <literal>DEBUG4</>, <literal>DEBUG3</>, <literal>DEBUG2</>,
863 864 865 866 867
        <literal>DEBUG1</>, <literal>LOG</>, <literal>NOTICE</>,
        <literal>WARNING</>, and <literal>ERROR</>.  Later values send
        less information to the client.  The default is
        <literal>NOTICE</>.  Note that <literal>LOG</> has a different
        precedence here than in <literal>LOG_MIN_MESSAGES</>. 
868
       </para>
869

870 871 872 873
       <para>
        Here is a summary of the various message types:
        <variablelist>
         <varlistentry>
874
          <term><literal>DEBUG[1-5]</literal></term>
875 876
          <listitem>
           <para>
877
            Provides information for use by developers.
878 879 880
	   </para>
          </listitem>
         </varlistentry>
881

882
         <varlistentry>
883
          <term><literal>INFO</literal></term>
884 885
          <listitem>
           <para>
886 887
            Provides information implicitly requested by the user,
            e.g., during <command>VACUUM VERBOSE</>.
888 889 890
	   </para>
          </listitem>
         </varlistentry>
891

892
         <varlistentry>
893
          <term><literal>NOTICE</literal></term>
894 895
          <listitem>
           <para>
896 897 898
            Provides information that may be helpful to users, e.g.,
            truncation of long identifiers and index creation as part
            of primary keys.
899 900 901
	   </para>
          </listitem>
         </varlistentry>
902

903
         <varlistentry>
904
          <term><literal>WARNING</literal></term>
905 906
          <listitem>
           <para>
907
            Provides warnings to the user, e.g., <command>COMMIT</>
908 909 910 911
            outside a transaction.
	   </para>
          </listitem>
         </varlistentry>
912

913
         <varlistentry>
914
          <term><literal>ERROR</literal></term>
915 916
          <listitem>
           <para>
917
            Reports the error that caused a transaction to abort.
918 919 920 921 922
	   </para>
          </listitem>
         </varlistentry>

         <varlistentry>
923
          <term><literal>LOG</literal></term>
924 925
          <listitem>
           <para>
926
            Reports information of interest to administrators, e.g.,
927 928 929 930
	    checkpoint activity.
	   </para>
          </listitem>
         </varlistentry>
931

932
         <varlistentry>
933
          <term><literal>FATAL</literal></term>
934 935
          <listitem>
           <para>
936
            Reports why a backend session terminated.
937 938 939
	   </para>
          </listitem>
         </varlistentry>
940

941
         <varlistentry>
942
          <term><literal>PANIC</literal></term>
943 944
          <listitem>
           <para>
945
            Reports why all backend sessions restarted.
946 947 948 949 950
	   </para>
          </listitem>
         </varlistentry>
        </variablelist>
       </para>
951 952 953
      </listitem>
     </varlistentry>

954
     <varlistentry>
955
      <term><varname>DEBUG_ASSERTIONS</varname> (<type>boolean</type>)</term>
956 957 958
      <listitem>
       <para>
        Turns on various assertion checks. This is a debugging aid. If
959 960 961 962
        you are experiencing strange problems or crashes you might want
        to turn this on, as it might expose programming mistakes. To use
        this option, the macro <literal>USE_ASSERT_CHECKING</literal>
        must be defined when <productname>PostgreSQL</productname> is
963
        built (accomplished by the <command>configure</command> option
964
        <option>--enable-cassert</option>). Note that
965
        <literal>DEBUG_ASSERTIONS</literal> defaults to on if
966 967
        <productname>PostgreSQL</productname> has been built with
	assertions enabled.
968 969 970
       </para>
      </listitem>
     </varlistentry>
971

972
     <varlistentry>
973 974 975 976
      <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>
977 978
      <listitem>
       <para>
979
        These flags enable various debugging output to be sent to the
980
	server log.  For each executed query, print either the query text,
981 982 983
	the resulting parse tree, the query rewriter output, or the execution
	plan. <option>DEBUG_PRETTY_PRINT</option> indents these displays
	to produce a more readable but much longer output format.
984 985 986
       </para>
      </listitem>
     </varlistentry>
987 988 989 990 991
     <varlistentry>
      <term><varname>EXPLAIN_PRETTY_PRINT</varname> (<type>boolean</type>)</term>
      <listitem>
       <para>
        Determines whether <command>EXPLAIN VERBOSE</> uses the indented
P
Peter Eisentraut 已提交
992
	or non-indented format for displaying detailed query-tree dumps.
993 994 995 996
       </para>
      </listitem>
     </varlistentry>

997
     <varlistentry>
998
      <term><varname>LOG_HOSTNAME</varname> (<type>boolean</type>)</term>
999 1000
      <listitem>
       <para>
1001 1002 1003 1004 1005
        By default, connection logs only show the IP address of the
        connecting host. If you want it to show the host name you can
        turn this on, but depending on your host name resolution setup
        it might impose a non-negligible performance penalty. This
        option can only be set at server start.
1006 1007 1008 1009 1010
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
1011
      <term><varname>LOG_CONNECTIONS</varname> (<type>boolean</type>)</term>
1012 1013
      <listitem>
       <para>
1014 1015 1016 1017
        This outputs a line to the server logs detailing each successful
        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.
1018 1019 1020 1021
       </para>
      </listitem>
     </varlistentry>

1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
     <varlistentry>
      <term><varname>LOG_DURATION</varname> (<type>boolean</type>)</term>
      <listitem>
       <para>
        Causes the duration of every completed statement to be logged.
        To use this option, enable <varname>LOG_STATEMENT</> and
        <varname>LOG_PID</> so you can link the statement to the
        duration using the process ID.
       </para>
      </listitem>
     </varlistentry>

1034 1035 1036 1037
     <varlistentry>
      <term><varname>LOG_MIN_ERROR_STATEMENT</varname> (<type>string</type>)</term>
      <listitem>
       <para>
1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050
        This controls for which message levels the SQL statement
        causing that message is to be recorded in the server log. All
        statements causing a message of the level of the setting or
        higher are logged. The default is <literal>PANIC</literal>
        (effectively turning this feature off). Valid values are
        <literal>DEBUG5</literal>, <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.
1051
       </para>
1052

1053
       <para>
1054
        It is recommended you enable <varname>LOG_PID</varname> as well
1055 1056 1057 1058 1059 1060
        so you can more easily match the error statement with the error
        message.
       </para>
      </listitem>
     </varlistentry>

1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079
     <varlistentry>
      <term><varname>LOG_MIN_MESSAGES</varname> (<type>string</type>)</term>
      <listitem>
       <para>
        This controls how much message detail is written to the server
        logs.  Valid values are <literal>DEBUG5</>,
        <literal>DEBUG4</>, <literal>DEBUG3</>, <literal>DEBUG2</>,
        <literal>DEBUG1</>, <literal>INFO</>, <literal>NOTICE</>,
        <literal>WARNING</>, <literal>ERROR</>, <literal>LOG</>,
        <literal>FATAL</>, and <literal>PANIC</>. Later values send
        less detail to the logs.  The default is <literal>NOTICE</>.
        Note that <literal>LOG</> has a different precedence here than
        in <literal>CLIENT_MIN_MESSAGES</>.  Also see that section 
	for an explanation of the various values.
       </para>

      </listitem>
     </varlistentry>

1080
     <varlistentry>
1081
      <term><varname>LOG_PID</varname> (<type>boolean</type>)</term>
1082 1083
      <listitem>
       <para>
P
Peter Eisentraut 已提交
1084
        Prefixes each server message in the log file with the process ID of
1085 1086
        the backend process. This is useful to sort out which messages
        pertain to which connection. The default is off.  This parameter
P
Peter Eisentraut 已提交
1087
        does not affect messages logged via <application>syslog</>, which always contain
1088
        the process ID.
1089 1090 1091 1092
       </para>
      </listitem>
     </varlistentry>

1093 1094 1095 1096
     <varlistentry>
      <term><varname>LOG_STATEMENT</varname> (<type>boolean</type>)</term>
      <listitem>
       <para>
1097
        Causes each SQL statement to be logged.
1098 1099 1100 1101
       </para>
      </listitem>
     </varlistentry>

1102
     <varlistentry>
1103
      <term><varname>LOG_TIMESTAMP</varname> (<type>boolean</type>)</term>
1104 1105
      <listitem>
       <para>
1106
        Prefixes each server log message with a time stamp. The default
1107
        is off.
1108 1109 1110 1111 1112
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
B
Rename:  
Bruce Momjian 已提交
1113 1114 1115 1116
      <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>
1117 1118
      <listitem>
       <para>
1119 1120 1121
        For each query, write performance statistics of the respective
        module to the server log. This is a crude profiling
        instrument.
1122 1123 1124 1125 1126
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
1127
      <term><varname>LOG_SOURCE_PORT</varname> (<type>boolean</type>)</term>
1128 1129
      <listitem>
       <para>
1130 1131 1132
        Shows the outgoing port number of the connecting host in the
        connection log messages. You could trace back the port number
        to find out what user initiated the connection. Other than
1133
        that, it's pretty useless and therefore off by default. This
1134
        option can only be set at server start.
1135 1136 1137 1138
       </para>
      </listitem>
     </varlistentry>

1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158
     <varlistentry>
      <term><varname>STATS_COMMAND_STRING</varname> (<type>boolean</type>)</term>
      <term><varname>STATS_BLOCK_LEVEL</varname> (<type>boolean</type>)</term>
      <term><varname>STATS_ROW_LEVEL</varname> (<type>boolean</type>)</term>
      <listitem>
       <para>
        These flags determine what information backends send to the statistics
	collector process: current commands, block-level activity statistics,
	or row-level activity statistics.  All default to off.  Enabling
	statistics collection costs a small amount of time per query, but
	is invaluable for debugging and performance tuning.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><varname>STATS_RESET_ON_SERVER_START</varname> (<type>boolean</type>)</term>
      <listitem>
       <para>
        If on, collected statistics are zeroed out whenever the server
1159 1160 1161
        is restarted. If off, statistics are accumulated across server
        restarts. The default is on. This option can only be set at
        server start.
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><varname>STATS_START_COLLECTOR</varname> (<type>boolean</type>)</term>
      <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>

1178
     <varlistentry>
1179
      <term><varname>SYSLOG</varname> (<type>integer</type>)</term>
1180 1181
      <listitem>
       <para>
1182
        <productname>PostgreSQL</productname> allows the use of
1183 1184 1185 1186 1187 1188 1189
        <systemitem>syslog</systemitem> for logging. If this option is
        set to 1, messages go both to <systemitem>syslog</> and the
        standard output. A setting of 2 sends output only to
        <systemitem>syslog</>. (Some messages will still go to the
        standard output/error.) The default is 0, which means
        <systemitem>syslog</> is off. This option must be set at server
        start.
1190
       </para>
1191 1192 1193
      </listitem>
     </varlistentry>

1194
     <varlistentry>
1195
      <term><varname>SYSLOG_FACILITY</varname> (<type>string</type>)</term>
1196 1197
       <listitem>
        <para>
1198
          This option determines the <application>syslog</application>
1199 1200
          <quote>facility</quote> to be used when
          <application>syslog</application> is enabled. You may choose
1201 1202 1203 1204 1205 1206
          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>.
1207 1208 1209 1210 1211
        </para>
       </listitem>
     </varlistentry>
     
     <varlistentry>
1212
      <term><varname>SYSLOG_IDENT</varname> (<type>string</type>)</term>
1213 1214
       <listitem>
        <para>
1215 1216
         If logging to <application>syslog</> is enabled, this option
         determines the program name used to identify
1217
         <productname>PostgreSQL</productname> messages in
1218 1219
         <application>syslog</application> log messages. The default is
         <literal>postgres</literal>.
1220 1221 1222 1223
        </para>
       </listitem>
      </varlistentry>

1224
     <varlistentry>
1225
      <term><varname>TRACE_NOTIFY</varname> (<type>boolean</type>)</term>
1226 1227
      <listitem>
       <para>
1228 1229 1230
        Generates a great amount of debugging output for the
        <command>LISTEN</command> and <command>NOTIFY</command>
        commands.
1231
       </para>
1232 1233 1234 1235 1236
      </listitem>
     </varlistentry>
    </variablelist>
   </para>
   </sect2>
1237

1238
   <sect2 id="runtime-config-general">
1239
    <title>General Operation</title>
1240

1241 1242
   <para>
    <variablelist>
1243
     <varlistentry>
1244
      <term><varname>AUTOCOMMIT</varname> (<type>boolean</type>)</term>
1245 1246 1247 1248 1249 1250 1251 1252
      <indexterm><primary>autocommit</></>
      <listitem>
       <para>
        If set to true, <productname>PostgreSQL</productname> will
	automatically do a <command>COMMIT</> after each successful command
	that is not inside an explicit transaction block (that is, unless a
	<command>BEGIN</> with no matching <command>COMMIT</> has been
	given).
1253
	If set to false, <productname>PostgreSQL</productname> will
1254
	commit only upon receiving an explicit
1255 1256 1257 1258 1259 1260 1261
	<command>COMMIT</> command. This mode can also be thought of as
	implicitly issuing <command>BEGIN</> whenever a command is
	received that is not already inside a transaction block. The
	default is true, for compatibility with historical
	<productname>PostgreSQL</productname> behavior. However, for
	maximum compatibility with the SQL specification, set it to
	false.
1262
       </para>
1263

1264 1265
       <note>
        <para>
1266
	 Even with <varname>autocommit</> set to false, <command>SET</>,
1267 1268
	 <command>SHOW</>, and <command>RESET</> do not start new
	 transaction blocks. They are run in their own transactions.
1269 1270
	 Once another command is issued, a transaction block
	 begins and any <command>SET</>, <command>SHOW</>, or
1271
	 <command>RESET</> commands are considered to be part of the
1272
	 transaction, i.e., they are committed or rolled back depending
1273 1274 1275
	 on the completion status of the transaction. To execute a
	 <command>SET</>, <command>SHOW</>, or <command>RESET</>
	 command at the start of a transaction block, use <command>BEGIN</>
1276 1277 1278 1279
	 first.
        </para>
       </note>

1280 1281 1282 1283 1284 1285 1286 1287 1288 1289
       <note>
        <para>
	 As of <productname>PostgreSQL</productname> 7.3, setting
	 <varname>autocommit</> to false is not well-supported.
	 This is a new feature and is not yet handled by all client
	 libraries and applications.  Before making it the default
	 setting in your installation, test carefully.
        </para>
       </note>

1290 1291 1292
      </listitem>
     </varlistentry>

1293
     <varlistentry>
1294
      <term><varname>AUSTRALIAN_TIMEZONES</varname> (<type>boolean</type>)</term>
P
Peter Eisentraut 已提交
1295
      <indexterm><primary>Australian time zones</></>
1296 1297 1298 1299
      <listitem>
       <para>
        If set to true, <literal>CST</literal>, <literal>EST</literal>,
        and <literal>SAT</literal> are interpreted as Australian
1300 1301
        time zones rather than as North American Central/Eastern
        time zones and Saturday. The default is false.
1302 1303 1304 1305
       </para>
      </listitem>
     </varlistentry>

1306 1307
     <varlistentry>
      <term><varname>AUTHENTICATION_TIMEOUT</varname> (<type>integer</type>)</term>
P
Peter Eisentraut 已提交
1308
      <indexterm><primary>timeout</><secondary>authentication</></indexterm>
1309 1310
      <listitem>
       <para>
1311 1312 1313 1314 1315 1316
        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
        <filename>postgresql.conf</filename> file.
1317 1318 1319 1320
       </para>
      </listitem>
     </varlistentry>

1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343
     <varlistentry>
      <term><varname>CLIENT_ENCODING</varname> (<type>string</type>)</term>
      <indexterm><primary>character set encoding</></>
      <listitem>
       <para>
        Sets the client-side encoding for multibyte character sets.
	The default is to use the database encoding.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
      <term><varname>DATESTYLE</varname> (<type>string</type>)</term>
      <indexterm><primary>date style</></>
      <listitem>
       <para>
        Sets the display format for dates, as well as the rules for
	interpreting ambiguous input dates.
        The default is <literal>ISO, US</>.
       </para>
      </listitem>
     </varlistentry>

1344 1345 1346 1347
     <varlistentry>
      <term><varname>DB_USER_NAMESPACE</varname> (<type>boolean</type>)</term>
      <listitem>
       <para>
1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358
        This allows per-database user names.  It is off by default.
       </para>

       <para>
        If this is on, 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.
1359
       </para>
1360

1361
       <para>
1362 1363 1364 1365
        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.
1366
       </para>
1367 1368 1369 1370 1371 1372 1373 1374

       <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>
1375 1376 1377
      </listitem>
     </varlistentry>

1378
     <varlistentry>
1379 1380 1381 1382
      <indexterm>
       <primary>deadlock</primary>
       <secondary>timeout</secondary>
      </indexterm>
P
Peter Eisentraut 已提交
1383 1384 1385 1386
      <indexterm>
       <primary>timeout</primary>
       <secondary>deadlock</secondary>
      </indexterm>
1387

1388
      <term><varname>DEADLOCK_TIMEOUT</varname> (<type>integer</type>)</term>
1389 1390
      <listitem>
       <para>
1391
        This is the amount of time, in milliseconds, to wait on a lock
1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405
        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 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 the lock will be released before
        the waiter decides to check for deadlock. This option can only
        be set at server start.
1406 1407 1408 1409
       </para>
      </listitem>
     </varlistentry>

1410 1411 1412 1413 1414
     <varlistentry>
      <indexterm>
       <primary>transaction isolation level</primary>
      </indexterm>

1415
      <term><varname>DEFAULT_TRANSACTION_ISOLATION</varname> (<type>string</type>)</term>
1416 1417
      <listitem>
       <para>
1418 1419 1420
        Each SQL transaction has an isolation level, which can be either
        <quote>read committed</quote> or <quote>serializable</quote>.
        This parameter controls the default isolation level of each new
P
Peter Eisentraut 已提交
1421
        transaction. The default is <quote>read committed</quote>.
1422 1423 1424
       </para>

       <para>
1425
        Consult the &cite-user; and
1426 1427 1428 1429 1430 1431
        the command <command>SET TRANSACTION</command> for more
        information.
       </para>
      </listitem>
     </varlistentry>

1432
     <varlistentry>
1433
      <term><varname>DYNAMIC_LIBRARY_PATH</varname> (<type>string</type>)</term>
P
Peter Eisentraut 已提交
1434 1435
      <indexterm><primary>dynamic_library_path</></>
      <indexterm><primary>dynamic loading</></>
1436 1437 1438
      <listitem>
       <para>
        If a dynamically loadable module needs to be opened and the
1439
        specified name does not have a directory component (i.e. the
1440 1441 1442 1443 1444 1445 1446 1447
        name does not contain a slash), the system will search this
        path for the specified file.  (The name that is used is the
        name specified in the <command>CREATE FUNCTION</command> or
        <command>LOAD</command> command.)
       </para>

       <para>
        The value for dynamic_library_path has to be a colon-separated
1448
        list of absolute directory names. If a directory name starts
1449
        with the special value <literal>$libdir</literal>, the
1450 1451 1452 1453 1454 1455
        compiled-in <productname>PostgreSQL</productname> package
        library directory is substituted. This where the modules
        provided by the <productname>PostgreSQL</productname>
        distribution are installed. (Use <literal>pg_config
        --pkglibdir</literal> to print the name of this directory.) For
        example:
1456
<programlisting>
1457
dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir'
1458 1459 1460 1461 1462
</programlisting>
       </para>

       <para>
        The default value for this parameter is
1463
        <literal>'$libdir'</literal>. If the value is set to an empty
1464 1465 1466 1467
        string, the automatic path search is turned off.
       </para>

       <para>
1468 1469 1470 1471 1472 1473
        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.
1474 1475 1476 1477
       </para>
      </listitem>
     </varlistentry>

1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501
     <varlistentry>
      <indexterm>
       <primary>significant digits</primary>
      </indexterm>
      <indexterm>
       <primary>display</primary>
       <secondary>of float numbers</secondary>
      </indexterm>

      <term><varname>EXTRA_FLOAT_DIGITS</varname> (<type>integer</type>)</term>
      <listitem>
       <para>
        This parameter adjusts the number of digits displayed for
	floating-point values, including <type>float4</>, <type>float8</>,
	and geometric datatypes.  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.
       </para>
      </listitem>
     </varlistentry>

1502
     <varlistentry>
1503
      <term><varname>KRB_SERVER_KEYFILE</varname> (<type>string</type>)</term>
1504 1505
      <listitem>
       <para>
1506 1507
        Sets the location of the Kerberos server key file. See
        <xref linkend="kerberos-auth"> for details.
1508
       </para>
1509 1510 1511
      </listitem>
     </varlistentry>

1512
     <varlistentry>
1513 1514 1515 1516
      <indexterm>
       <primary>fsync</primary>
      </indexterm>

1517
      <term><varname>FSYNC</varname> (<type>boolean</type>)</term>
1518 1519
      <listitem>
       <para>
1520
        If this option is on, the <productname>PostgreSQL</> backend
1521 1522 1523 1524 1525 1526
        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 installation will recover to a
        consistent state after an operating system or hardware crash.
        (Crashes of the database server itself are <emphasis>not</>
        related to this.)
1527 1528 1529
       </para>

       <para>
1530 1531 1532 1533 1534 1535 1536 1537 1538
        However, this operation does slow down
        <productname>PostgreSQL</> because at transaction commit it has
        wait for the operating system to flush the write-ahead log.
        Without <function>fsync</>, the operating system is allowed to
        do its best in buffering, sorting, and delaying writes, which
        can considerably increase 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.
1539 1540 1541
       </para>

       <para>
1542 1543 1544 1545 1546 1547 1548
        For the above reasons, some administrators always leave it off,
        some turn it off only for bulk loads, where there is a clear
        restart point if something goes wrong, and some leave it on just
        to be on the safe side. Because it is always safe, the default
        is on. If you trust your operating system, your hardware, and
        your utility company (or better your UPS), you might want to
        disable <varname>fsync</varname>.
1549 1550 1551
       </para>

       <para>
1552 1553 1554 1555 1556
        It should be noted that the performance penalty of doing
        <function>fsync</>s is considerably less in
        <productname>PostgreSQL</> version 7.1 and later. If you
        previously suppressed <function>fsync</>s for performance
        reasons, you may wish to reconsider your choice.
1557
       </para>
T
Tom Lane 已提交
1558 1559 1560 1561 1562

       <para>
	This option can only be set at server start or in the
	<filename>postgresql.conf</filename> file.
       </para>
1563 1564
      </listitem>
     </varlistentry>
1565

1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590
     <varlistentry>
      <term><varname>LC_MESSAGES</varname> (<type>string</type>)</term>
      <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>

     <varlistentry>
      <term><varname>LC_MONETARY</varname> (<type>string</type>)</term>
      <listitem>
       <para>
1591 1592 1593
        Sets the locale to use for formatting monetary amounts, for
        example with the <function>to_char()</function> family of
        functions.  Acceptable values are system-dependent; see <xref
1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620
        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>

     <varlistentry>
      <term><varname>LC_NUMERIC</varname> (<type>string</type>)</term>
      <listitem>
       <para>
        Sets the locale to use for formatting numbers, for example
        with the <function>to_char()</function> family of
        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>

     <varlistentry>
      <term><varname>LC_TIME</varname> (<type>string</type>)</term>
      <listitem>
       <para>
1621 1622 1623
        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
1624 1625 1626 1627 1628 1629 1630 1631
        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>

1632
     <varlistentry>
1633
      <term><varname>MAX_CONNECTIONS</varname> (<type>integer</type>)</term>
1634 1635
      <listitem>
       <para>
1636 1637 1638 1639
        Determines the maximum number of concurrent connections to the
        database server. The default is 32 (unless altered while
        building the server). This parameter can only be set at server
        start.
1640 1641 1642
       </para>
      </listitem>
     </varlistentry>
1643

1644
     <varlistentry>
1645
      <term><varname>MAX_EXPR_DEPTH</varname> (<type>integer</type>)</term>
1646 1647
      <listitem>
       <para>
1648 1649 1650 1651
        Sets the maximum expression nesting depth of the parser. The
        default value is high enough for any normal query, but you can
        raise it if needed. (But if you raise it too high, you run
        the risk of backend crashes due to stack overflow.)
1652
       </para>
1653
      </listitem>
1654 1655 1656 1657 1658 1659
     </varlistentry>

     <varlistentry>
      <term><varname>MAX_FILES_PER_PROCESS</varname> (<type>integer</type>)</term>
      <listitem>
       <para>
1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673
        Sets the maximum number of simultaneously open files in each
        server subprocess. The default is 1000. The limit actually used
        by the code is the smaller of this setting and the result of
        <literal>sysconf(_SC_OPEN_MAX)</literal>. Therefore, on systems
        where <function>sysconf</> returns a reasonable limit, you don't
        need to worry about this setting. But on some platforms
        (notably, most BSD systems), <function>sysconf</> returns a
        value that is much larger 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 or in the <filename>postgresql.conf</filename>
        configuration file; if changed in the configuration file, it
        only affects subsequently-started server subprocesses.
1674 1675
       </para>
      </listitem>
1676 1677 1678
     </varlistentry>

     <varlistentry>
1679
      <term><varname>MAX_FSM_RELATIONS</varname> (<type>integer</type>)</term>
1680 1681
      <listitem>
       <para>
1682 1683 1684
        Sets the maximum number of relations (tables) for which free
        space will be tracked in the shared free-space map. The default
        is 100. This option can only be set at server start.
1685 1686 1687 1688 1689
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
1690
      <term><varname>MAX_FSM_PAGES</varname> (<type>integer</type>)</term>
1691 1692
      <listitem>
       <para>
1693 1694 1695
        Sets the maximum number of disk pages for which free space will
        be tracked in the shared free-space map. The default is 10000.
        This option can only be set at server start.
1696 1697 1698 1699 1700
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
1701
      <term><varname>MAX_LOCKS_PER_TRANSACTION</varname> (<type>integer</type>)</term>
1702 1703 1704
      <listitem>
       <para>
        The shared lock table is sized on the assumption that at most
1705 1706 1707 1708 1709 1710
        <varname>max_locks_per_transaction</> *
        <varname>max_connections</varname> distinct objects will need to
        be locked at any one time. The default, 64, which has historically
        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.
1711 1712 1713 1714
       </para>
      </listitem>
     </varlistentry>

1715 1716 1717 1718 1719
     <varlistentry>
      <term><varname>PASSWORD_ENCRYPTION</varname> (<type>boolean</type>)</term>
      <listitem>
       <para>
        When a password is specified in <command>CREATE USER</> or
1720 1721
        <command>ALTER USER</> without writing either <literal>ENCRYPTED</> or
        <literal>UNENCRYPTED</>, this flag determines whether the password is to be
1722
        encrypted. The default is on (encrypt the password).
1723 1724 1725 1726
       </para>
      </listitem>
     </varlistentry>

1727
     <varlistentry>
1728
      <term><varname>PORT</varname> (<type>integer</type>)</term>
P
Peter Eisentraut 已提交
1729
      <indexterm><primary>port</></>
1730 1731
      <listitem>
       <para>
1732 1733
        The TCP port the server listens on; 5432 by default. This
        option can only be set at server start.
1734 1735 1736 1737
       </para>
      </listitem>
     </varlistentry>

1738 1739 1740 1741 1742 1743
     <varlistentry>
      <term><varname>SEARCH_PATH</varname> (<type>string</type>)</term>
      <indexterm><primary>search_path</></>
      <indexterm><primary>namespaces</></>
      <listitem>
       <para>
1744 1745
        This variable specifies the order in which schemas are searched
	when an object (table, data type, function, etc.) is referenced by a
1746
	simple name with no schema component.  When there are objects of
1747
	identical names in different schemas, the one found first
1748
	in the search path is used.  An object that is not in any of the
1749 1750
	schemas in the search path can only be referenced by specifying
	its containing schema with a qualified (dotted) name.
1751 1752 1753
       </para>

       <para>
1754 1755 1756 1757 1758
        The value for <varname>search_path</varname> has to be a comma-separated
        list of schema names.  If one of the list items is
        the special value <literal>$user</literal>, then the schema
	having the same name as the <function>SESSION_USER</> is substituted, if there
	is such a schema.  (If not, <literal>$user</literal> is ignored.)
1759 1760 1761
       </para>

       <para>
1762
        The system catalog schema, <literal>pg_catalog</>, is always
1763 1764 1765 1766
	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.
1767 1768
	It should also be noted that the temporary-table schema,
	<literal>pg_temp_<replaceable>nnn</></>, is implicitly searched before any of
1769 1770 1771 1772 1773
	these.
       </para>

       <para>
        When objects are created without specifying a particular target
1774
	schema, they will be placed in the first schema listed
1775 1776 1777 1778 1779 1780 1781
	in the search path.  An error is reported if the search path is
	empty.
       </para>

       <para>
        The default value for this parameter is
        <literal>'$user, public'</literal> (where the second part will be
1782
	ignored if there is no schema named <literal>public</>).
1783
	This supports shared use of a database (where no users
1784 1785
	have private schemas, and all share use of <literal>public</>),
	private per-user schemas, and combinations of these.  Other
1786 1787 1788 1789 1790
	effects can be obtained by altering the default search path
	setting, either globally or per-user.
       </para>

       <para>
1791 1792 1793 1794
	 <indexterm>
	  <primary>schemas</primary>
	  <secondary>current schema</secondary>
	 </indexterm>
1795 1796 1797 1798 1799 1800 1801
        The current effective value of the search path can be examined
	via the SQL function <function>current_schemas()</>.  This is not
	quite the same as examining the value of
	<varname>search_path</varname>, since <function>current_schemas()</>
	shows how the requests appearing in <varname>search_path</varname>
	were resolved.
       </para>
1802 1803 1804 1805

       <para>
        For more information on schema handling, see the &cite-user;.
       </para>
1806 1807 1808
      </listitem>
     </varlistentry>

1809 1810 1811 1812 1813
     <varlistentry>
      <term><varname>STATEMENT_TIMEOUT</varname> (<type>integer</type>)</term>
      <listitem>
       <para>
        Aborts any statement that takes over the specified number of
1814
        milliseconds.  A value of zero turns off the timer.
1815 1816 1817 1818
       </para>
      </listitem>
     </varlistentry>

1819
     <varlistentry>
1820
      <term><varname>SHARED_BUFFERS</varname> (<type>integer</type>)</term>
1821 1822
      <listitem>
       <para>
1823 1824 1825
        Sets the number of shared memory buffers used by the database
        server. The default is 64. Each buffer is typically 8192 bytes.
        This option can only be set at server start.
1826
       </para>
1827 1828 1829 1830
      </listitem>
     </varlistentry>

     <varlistentry>
1831
      <term><varname>SILENT_MODE</varname> (<type>bool</type>)</term>
1832 1833
      <listitem>
       <para>
1834
        Runs the server silently. If this option is set, the server
1835
        will automatically run in background and any controlling ttys
1836
        are disassociated, thus no messages are written to standard
1837
        output or standard error (same effect as <command>postmaster</>'s <option>-S</option>
1838 1839 1840
        option). Unless some logging system such as
        <application>syslog</> is enabled, using this option is
        discouraged since it makes it impossible to see error messages.
1841
       </para>
1842 1843 1844
      </listitem>
     </varlistentry>

1845
     <varlistentry>
1846
      <term><varname>SORT_MEM</varname> (<type>integer</type>)</term>
1847 1848
      <listitem>
       <para>
1849 1850
	Specifies the amount of memory to be used by internal sorts and
	hashes before switching to temporary disk files. The value is
1851
	specified in kilobytes, and defaults to 1024 kilobytes (1 MB).
1852 1853 1854 1855 1856 1857
	Note that for a complex query, several sorts might be running in
	parallel, and each one will be allowed to use as much memory as
	this value specifies before it starts to put data into temporary
	files. Also, each running backend could be doing one or more
	sorts simultaneously, so the total memory used could be many
	times the value of <varname>SORT_MEM</varname>. Sorts are used
1858
	by <literal>ORDER BY</>, merge joins, and <command>CREATE INDEX</>.
1859 1860 1861
       </para>
      </listitem>
     </varlistentry>
1862 1863

     <varlistentry>
1864
      <term><varname>SQL_INHERITANCE</varname> (<type>bool</type>)</term>
P
Peter Eisentraut 已提交
1865
      <indexterm><primary>inheritance</></>
1866 1867 1868
      <listitem>
       <para>
        This controls the inheritance semantics, in particular whether
1869 1870 1871 1872 1873
        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> keyword to exclude subtables. See the
1874
        SQL language reference and the &cite-user; for more information about inheritance.
1875 1876 1877
       </para>
      </listitem>
     </varlistentry>
1878 1879

     <varlistentry>
1880 1881 1882 1883
      <indexterm>
       <primary>SSL</primary>
      </indexterm>

1884
      <term><varname>SSL</varname> (<type>boolean</type>)</term>
1885 1886 1887
      <listitem>
       <para>
        Enables <acronym>SSL</> connections. Please read
1888
        <xref linkend="ssl-tcp"> before using this. The default
1889 1890 1891 1892 1893 1894
        is off.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
1895
      <term><varname>TCPIP_SOCKET</varname> (<type>boolean</type>)</term>
1896 1897
      <listitem>
       <para>
1898 1899 1900 1901
        If this is true, then the server will accept TCP/IP connections.
        Otherwise only local Unix domain socket connections are
        accepted. It is off by default. This option can only be set at
        server start.
1902 1903 1904
       </para>
      </listitem>
     </varlistentry>
1905

1906 1907 1908 1909 1910 1911 1912
     <varlistentry>
      <term><varname>TIMEZONE</varname> (<type>string</type>)</term>
      <indexterm><primary>time zone</></>
      <listitem>
       <para>
        Sets the time zone for displaying and interpreting timestamps.
	The default is to use whatever the system environment
1913
	specifies as the time zone.
1914 1915 1916 1917
       </para>
      </listitem>
     </varlistentry>

1918 1919
     <varlistentry>
      <term><varname>TRANSFORM_NULL_EQUALS</varname> (<type>boolean</type>)</term>
P
Peter Eisentraut 已提交
1920
      <indexterm><primary>IS NULL</></>
1921 1922 1923
      <listitem>
       <para>
        When turned on, expressions of the form
1924 1925
        <literal><replaceable>expr</> = NULL</literal> (or <literal>NULL
        = <replaceable>expr</></literal>) are treated as
1926
        <literal><replaceable>expr</> IS NULL</literal>, that is, they
1927
        return true if <replaceable>expr</> evaluates to the null value,
1928
        and false otherwise. The correct behavior of
1929
        <literal><replaceable>expr</> = NULL</literal> is to always
1930
        return null (unknown). Therefore this option defaults to off.
1931 1932 1933 1934 1935 1936
       </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 已提交
1937
        null values, so if you use that interface to access the database you
1938 1939
        might want to turn this option on.  Since expressions of the
        form <literal><replaceable>expr</> = NULL</literal> always
1940
        return the null value (using the correct interpretation) they are not
1941 1942 1943
        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
1944
        involving null values, so this option is not on by default.
1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955
       </para>

       <para>
        Note that this option only affects the literal <literal>=</>
        operator, not other comparison operators or other expressions
        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>
1956
        Refer to the &cite-user; for related information.
1957 1958 1959 1960
       </para>
      </listitem>
     </varlistentry>

1961
     <varlistentry>
1962
      <term><varname>UNIX_SOCKET_DIRECTORY</varname> (<type>string</type>)</term>
1963 1964
      <listitem>
       <para>
1965
	Specifies the directory of the Unix-domain socket on which the
1966
	server is to listen for
1967 1968
	connections from client applications.  The default is normally
	<filename>/tmp</filename>, but can be changed at build time.
1969 1970 1971 1972
       </para>
      </listitem>
     </varlistentry>

1973
     <varlistentry>
1974
      <term><varname>UNIX_SOCKET_GROUP</varname> (<type>string</type>)</term>
1975 1976 1977 1978
      <listitem>
       <para>
        Sets the group owner of the Unix domain socket.  (The owning
        user of the socket is always the user that starts the
1979
        server.)  In combination with the option
1980 1981 1982 1983 1984 1985 1986 1987 1988 1989
        <option>UNIX_SOCKET_PERMISSIONS</option> this can be used as
        an additional access control mechanism for this socket type.
        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.
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
1990
      <term><varname>UNIX_SOCKET_PERMISSIONS</varname> (<type>integer</type>)</term>
1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003
      <listitem>
       <para>
        Sets the access permissions of the Unix domain socket.  Unix
        domain sockets use the usual Unix file system permission set.
        The option value is expected to be an numeric mode
        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).)
       </para>

       <para>
        The default permissions are <literal>0777</literal>, meaning
2004
        anyone can connect. Reasonable alternatives are
2005
        <literal>0770</literal> (only user and group, see also under
2006
        <option>UNIX_SOCKET_GROUP</option>) and <literal>0700</literal>
2007
        (only user). (Note that actually for a Unix domain socket, only write
2008 2009
        permission matters and there is no point in setting or revoking
        read or execute permissions.)
2010 2011 2012
       </para>

       <para>
2013
        This access control mechanism is independent of the one
2014 2015 2016 2017 2018 2019 2020 2021 2022
        described in <xref linkend="client-authentication">.
       </para>

       <para>
        This option can only be set at server start.
       </para>
      </listitem>
     </varlistentry>

2023 2024 2025 2026 2027
     <varlistentry>
      <term><varname>VACUUM_MEM</varname> (<type>integer</type>)</term>
      <listitem>
       <para>
	Specifies the maximum amount of memory to be used by
2028 2029 2030 2031
	<command>VACUUM</command> to keep track of to-be-reclaimed
	tuples. The value is specified in kilobytes, and defaults to
	8192 kilobytes. Larger settings may improve the speed of
	vacuuming large tables that have many deleted tuples.
2032 2033 2034 2035
       </para>
      </listitem>
     </varlistentry>

2036
     <varlistentry>
2037
      <term><varname>VIRTUAL_HOST</varname> (<type>string</type>)</term>
2038 2039
      <listitem>
       <para>
2040
	Specifies the TCP/IP host name or address on which the
2041
	<application>postmaster</application> is to listen for
2042 2043 2044
	connections from client applications. Defaults to listening on
	all configured addresses (including <systemitem
	class="systemname">localhost</>).
2045 2046 2047 2048
       </para>
      </listitem>
     </varlistentry>

2049
    </variablelist>
2050
   </para>
2051
   </sect2>
2052

2053 2054 2055 2056 2057 2058 2059 2060
   <sect2 id="runtime-config-wal">
    <title>WAL</title>

   <para>
    See also <xref linkend="wal-configuration"> for details on WAL
    tuning.

    <variablelist>
T
Tom Lane 已提交
2061
     <varlistentry>
2062
      <term><varname>CHECKPOINT_SEGMENTS</varname> (<type>integer</type>)</term>
T
Tom Lane 已提交
2063 2064
      <listitem>
       <para>
2065
        Maximum distance between automatic WAL checkpoints, in log file
T
Tom Lane 已提交
2066 2067 2068 2069 2070 2071 2072
	segments (each segment is normally 16 megabytes).
	This option can only be set at server start or in the
	<filename>postgresql.conf</filename> file.
       </para>
      </listitem>
     </varlistentry>

2073
     <varlistentry>
2074
      <term><varname>CHECKPOINT_TIMEOUT</varname> (<type>integer</type>)</term>
2075 2076
      <listitem>
       <para>
T
Tom Lane 已提交
2077 2078 2079
        Maximum time between automatic WAL checkpoints, in seconds.
	This option can only be set at server start or in the
	<filename>postgresql.conf</filename> file.
2080 2081 2082 2083
       </para>
      </listitem>
     </varlistentry>

2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095
    <variablelist>
     <varlistentry>
      <term><varname>CHECKPOINT_WARNING</varname> (<type>integer</type>)</term>
      <listitem>
       <para>
        Send a message to the server logs if checkpoints caused by the
        filling of checkpoint segment files happens more frequently than
        this number of seconds.  Zero turns off the warning.
       </para>
      </listitem>
     </varlistentry>

2096
     <varlistentry>
2097
      <term><varname>COMMIT_DELAY</varname> (<type>integer</type>)</term>
2098 2099 2100
      <listitem>
       <para>
        Time delay between writing a commit record to the WAL buffer and
2101 2102 2103 2104 2105 2106
        flushing the buffer out to disk, in microseconds. A nonzero
        delay allows multiple transactions to be committed with only one
        <function>fsync</function> system call, if system load is high
        enough additional transactions may 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
2107 2108
        only performed if at least <varname>COMMIT_SIBLINGS</varname> other transactions
        are active at the instant that a backend process has written its commit
2109
        record.
2110 2111 2112 2113 2114
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
2115
      <term><varname>COMMIT_SIBLINGS</varname> (<type>integer</type>)</term>
2116 2117 2118
      <listitem>
       <para>
        Minimum number of concurrent open transactions to require before
2119 2120 2121
        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.
2122 2123 2124 2125
       </para>
      </listitem>
     </varlistentry>

2126
     <varlistentry>
2127
      <term><varname>WAL_BUFFERS</varname> (<type>integer</type>)</term>
2128 2129
      <listitem>
       <para>
2130
        Number of disk-page buffers in shared memory for WAL logging.
2131
	This option can only be set at server start.
2132 2133 2134 2135 2136
       </para>
      </listitem>
     </varlistentry>

     <varlistentry>
2137
      <term><varname>WAL_DEBUG</varname> (<type>integer</type>)</term>
2138 2139
      <listitem>
       <para>
2140
        If nonzero, turn on WAL-related debugging output on standard
2141 2142 2143 2144 2145
        error.
       </para>
      </listitem>
     </varlistentry>

2146
     <varlistentry>
2147
      <term><varname>WAL_SYNC_METHOD</varname> (<type>string</type>)</term>
2148 2149 2150 2151
      <listitem>
       <para>
        Method used for forcing WAL updates out to disk.  Possible
	values are
P
Peter Eisentraut 已提交
2152 2153 2154 2155
	<literal>FSYNC</> (call <function>fsync()</> at each commit),
	<literal>FDATASYNC</> (call <function>fdatasync()</> at each commit),
	<literal>OPEN_SYNC</> (write WAL files with <function>open()</> option <symbol>O_SYNC</>), or
	<literal>OPEN_DATASYNC</> (write WAL files with <function>open()</> option <symbol>O_DSYNC</>).
2156 2157 2158 2159 2160 2161
	Not all of these choices are available on all platforms.
        This option can only be set at server start or in the
	<filename>postgresql.conf</filename> file.
       </para>
      </listitem>
     </varlistentry>
2162 2163 2164 2165 2166
    </variablelist>
    </para>
   </sect2>


2167 2168 2169
  <sect2 id="runtime-config-short">
   <title>Short Options</title>

2170 2171
   <para>
    For convenience there are also single letter option switches
2172 2173 2174
    available for many parameters. They are described in <xref
    linkend="runtime-config-short-table">.
   </para>
2175

2176
    <table id="runtime-config-short-table">
2177
     <title>Short option key</title>
2178
     <tgroup cols="2">
2179 2180 2181 2182 2183 2184
      <thead>
       <row>
        <entry>Short option</entry>
        <entry>Equivalent</entry>
       </row>
      </thead>
2185

2186 2187
      <tbody>
       <row>
2188 2189
        <entry><option>-B <replaceable>x</replaceable></option></entry>
        <entry><literal>shared_buffers = <replaceable>x</replaceable></></entry>
2190 2191
       </row>
       <row>
2192
        <entry><option>-d <replaceable>x</replaceable></option></entry>
2193
        <entry><literal>log_min_messages = DEBUG<replaceable>x</replaceable></></entry>
2194 2195
       </row>
       <row>
2196 2197
        <entry><option>-F</option></entry>
        <entry><literal>fsync = off</></entry>
2198
       </row>
2199
       <row>
2200 2201
        <entry><option>-h <replaceable>x</replaceable></option></entry>
        <entry><literal>virtual_host = <replaceable>x</replaceable></></entry>
2202
       </row>
2203
       <row>
2204 2205
        <entry><option>-i</option></entry>
        <entry><literal>tcpip_socket = on</></entry>
2206 2207
       </row>
       <row>
2208 2209
        <entry><option>-k <replaceable>x</replaceable></option></entry>
        <entry><literal>unix_socket_directory = <replaceable>x</replaceable></></entry>
2210
       </row>
2211
       <row>
2212 2213
        <entry><option>-l</option></entry>
        <entry><literal>ssl = on</></entry>
2214
       </row>
2215
       <row>
2216 2217
        <entry><option>-N <replaceable>x</replaceable></option></entry>
        <entry><literal>max_connections = <replaceable>x</replaceable></></entry>
2218 2219
       </row>
       <row>
2220 2221
        <entry><option>-p <replaceable>x</replaceable></option></entry>
        <entry><literal>port = <replaceable>x</replaceable></></entry>
2222 2223 2224
       </row>

       <row>
2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249
        <entry>
          <option>-fi</option>, <option>-fh</option>,
          <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
            the individual backend process via the <option>-o</option>
            postmaster option, for example,
<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>
          <literal>enable_indexscan=off</>,
          <literal>enable_hashjoin=off</>,
          <literal>enable_mergejoin=off</>,
          <literal>enable_nestloop=off</>,
          <literal>enable_seqscan=off</>,
          <literal>enable_tidscan=off</>
         </entry>
2250
       </row>
2251

2252
       <row>
2253 2254
        <entry><option>-s</option><footnoteref linkend="fn.runtime-config-short"></entry>
        <entry><literal>show_statement_stats = on</></entry>
2255
       </row>
2256

2257
       <row>
2258 2259 2260
        <entry><option>-S <replaceable>x</replaceable></option><footnoteref linkend="fn.runtime-config-short">
        </entry>
        <entry><literal>sort_mem = <replaceable>x</replaceable></></entry>
2261
       </row>
2262

2263
       <row>
2264
        <entry><option>-tpa</option>, <option>-tpl</option>, <option>-te</option><footnoteref linkend="fn.runtime-config-short"></entry>
B
Rename:  
Bruce Momjian 已提交
2265 2266 2267
        <entry><literal>log_parser_stats=on</>,
        <literal>log_planner_stats=on</>, 
	<literal>log_executor_stats=on</></entry>
2268 2269 2270 2271 2272
       </row>
      </tbody>
     </tgroup>
    </table>

2273
  </sect2>
2274 2275
 </sect1>

2276

2277 2278 2279 2280
 <sect1 id="kernel-resources">
  <title>Managing Kernel Resources</title>

  <para>
2281
   A large <productname>PostgreSQL</> installation can quickly exhaust
2282 2283 2284
   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
2285
   problem, keep reading.
2286 2287 2288 2289 2290
  </para>

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

2291 2292 2293 2294 2295 2296 2297 2298
   <indexterm zone="sysvipc">
    <primary>shared memory</primary>
   </indexterm>

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

2299 2300
   <para>
    Shared memory and semaphores are collectively referred to as
2301 2302 2303
    <quote><systemitem class="osname">System V</>
    <acronym>IPC</></quote> (together with message queues, which are not
    relevant for <productname>PostgreSQL</>). Almost all modern
2304
    operating systems provide these features, but not all of them have
2305 2306 2307 2308
    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.)
2309 2310 2311 2312 2313 2314
   </para>

   <para>
    The complete lack of these facilities is usually manifested by an
    <errorname>Illegal system call</> error upon postmaster start. In
    that case there's nothing left to do but to reconfigure your
2315
    kernel -- <productname>PostgreSQL</> won't work without them.
2316 2317 2318
   </para>

   <para>
2319
    When <productname>PostgreSQL</> exceeds one of the various hard
2320 2321 2322 2323 2324 2325 2326 2327 2328
    <acronym>IPC</> limits, the postmaster will refuse to start and
    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.
2329 2330 2331 2332
   </para>


   <table id="sysvipc-parameters">
2333
    <title><systemitem class="osname">System V</> <acronym>IPC</> parameters</>
2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347

    <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)</>
2348
       <entry>250kB + 8.2 kB * <varname>shared_buffers</> + 14.2 kB * <varname>max_connections</> or infinity</entry>
2349 2350 2351 2352 2353
      </row>

      <row>
       <entry><varname>SHMMIN</></>
       <entry>Minimum size of shared memory segment (bytes)</>
B
Bruce Momjian 已提交
2354
       <entry>1</>
2355 2356
      </row>

2357 2358 2359
      <row>
       <entry><varname>SHMALL</></>
       <entry>Total amount of shared memory available (bytes or pages)</>
2360
       <entry>if bytes, same as <varname>SHMMAX</varname>; if pages, <literal>ceil(SHMMAX/PAGE_SIZE)</literal></>
2361 2362
      </row>

2363 2364 2365
      <row>
       <entry><varname>SHMSEG</></>
       <entry>Maximum number of shared memory segments per process</>
P
Peter Eisentraut 已提交
2366
       <entry>only 1 segment is needed, but the default is much higher</>
2367 2368 2369 2370 2371
      </row>

       <row>
        <entry><varname>SHMMNI</></>
        <entry>Maximum number of shared memory segments system-wide</>
B
Bruce Momjian 已提交
2372
        <entry>like <varname>SHMSEG</> plus room for other applications</>
2373 2374 2375 2376 2377
       </row>

       <row>
        <entry><varname>SEMMNI</></>
        <entry>Maximum number of semaphore identifiers (i.e., sets)</>
2378
        <entry><literal>&gt;= ceil(max_connections / 16)</literal></>
2379 2380 2381 2382 2383
       </row>

       <row>
        <entry><varname>SEMMNS</></>
        <entry>Maximum number of semaphores system-wide</>
2384
        <entry><literal>ceil(max_connections / 16) * 17</literal> + room for other applications</>
2385 2386 2387 2388 2389
       </row>

       <row>
        <entry><varname>SEMMSL</></>
        <entry>Maximum number of semaphores per set</>
P
Peter Eisentraut 已提交
2390
        <entry>&gt;= 17</>
2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410
       </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</>
        <entry>&gt;= 255  (The default is often 32767, don't change unless asked to.)</>
       </row>

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


   <para>
2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424
    <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
    possible that this limit has been exceeded. The size of the required
    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
    required segment size by multiplying the number of buffers and the
    block size (8 kB by default) plus ample overhead (at least half a
    megabyte). Any error message you might get will contain the size of
    the failed allocation request.
2425 2426 2427 2428
   </para>

   <para>
    Less likely to cause problems is the minimum size for shared
P
Peter Eisentraut 已提交
2429
    memory segments (<varname>SHMMIN</>), which should be at most
2430
    approximately 256 kB for <productname>PostgreSQL</> (it is
P
Peter Eisentraut 已提交
2431 2432 2433 2434 2435
    usually just 1). The maximum number of segments system-wide
    (<varname>SHMMNI</>) or per-process (<varname>SHMSEG</>) should
    not cause a problem unless your system has them set to zero. Some
    systems also have a limit on the total amount of shared memory in
    the system; see the platform-specific instructions below.
2436 2437 2438
   </para>

   <para>
2439
    <productname>PostgreSQL</> uses one semaphore per allowed connection
P
Peter Eisentraut 已提交
2440 2441
    (<option>-N</> option), in sets of 16.  Each such set will also
    contain a 17th semaphore which contains a <quote>magic
2442
    number</quote>, to detect collision with semaphore sets used by
P
Peter Eisentraut 已提交
2443 2444 2445 2446
    other applications. The maximum number of semaphores in the system
    is set by <varname>SEMMNS</>, which consequently must be at least
    as high as the connection setting plus one extra for each 16
    allowed connections (see the formula in <xref
2447
    linkend="sysvipc-parameters">).  The parameter <varname>SEMMNI</>
P
Peter Eisentraut 已提交
2448 2449 2450 2451 2452 2453
    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,
    which are usually confusingly worded <quote><errorname>No space
    left on device</></>, from the function <function>semget()</>.
2454 2455 2456
   </para>

   <para>
2457
    In some cases it might also be necessary to increase
2458
    <varname>SEMMAP</> to be at least on the order of
2459 2460 2461 2462 2463 2464 2465 2466
    <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.
2467 2468 2469 2470
   </para>

   <para>
    The <varname>SEMMSL</> parameter, which determines how many
P
Peter Eisentraut 已提交
2471
    semaphores can be in a set, must be at least 17 for
2472
    <productname>PostgreSQL</>.
2473 2474 2475
   </para>

   <para>
T
Tom Lane 已提交
2476 2477
    Various other settings related to <quote>semaphore undo</>, such as
    <varname>SEMMNU</> and <varname>SEMUME</>, are not of concern
2478
    for <productname>PostgreSQL</>.
2479 2480 2481 2482 2483 2484 2485
   </para>


   <para>
    <variablelist>

     <varlistentry>
2486
      <term><systemitem class="osname">BSD/OS</></term>
P
Peter Eisentraut 已提交
2487
      <indexterm><primary>BSD/OS</></>
2488 2489 2490 2491 2492 2493
      <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.
2494 2495
         To increase the number of shared buffers supported by the
         postmaster, add the following to your kernel configuration
2496
         file. A <varname>SHMALL</> value of 1024 represents 4 MB of
2497 2498
         shared memory. The following increases the maximum shared
         memory area to 32 MB:
2499
<programlisting>
2500
options "SHMALL=8192"
B
Bruce Momjian 已提交
2501
options "SHMMAX=\(SHMALL*PAGE_SIZE\)"
2502 2503 2504 2505 2506
</programlisting>
        </para>
       </formalpara>

       <para>
2507 2508
        For those running 4.1 or later, just make the above changes,
        recompile the kernel, and reboot. For those running earlier
2509
        releases, use <command>bpatch</> to find the
2510
        <varname>sysptsize</> value in the current kernel. This is
2511
        computed dynamically at boot time.
2512 2513 2514 2515
<screen>
$ <userinput>bpatch -r sysptsize</>
<computeroutput>0x9 = 9</>
</screen>
2516
        Next, add <varname>SYSPTSIZE</> as a hard-coded value in the
2517
        kernel configuration file. Increase the value you found using
2518
        <application>bpatch</>. Add 1 for every additional 4 MB of
2519 2520
        shared memory you desire.
<programlisting>
2521
options "SYSPTSIZE=16"
2522
</programlisting>
2523
        <varname>sysptsize</> cannot be changed by <command>sysctl</command>.
2524 2525 2526 2527 2528
       </para>

       <formalpara>
        <title>Semaphores</>
        <para>
2529 2530 2531
         You may need to increase the number of semaphores. By default,
         <productname>PostgreSQL</> allocates 34 semaphores, which is
         over half the default system total of 60.
2532 2533 2534
        </para>
       </formalpara>

B
Bruce Momjian 已提交
2535
        <para>
2536
        Set the values you want in your kernel configuration file, e.g.:
2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548
<programlisting>
options "SEMMNI=40"
options "SEMMNS=240"
options "SEMUME=40"
options "SEMMNU=120"
</programlisting>
       </para>
      </listitem>
     </varlistentry>


     <varlistentry>
2549 2550 2551
      <term><systemitem class="osname">FreeBSD</></term>
      <term><systemitem class="osname">NetBSD</></term>
      <term><systemitem class="osname">OpenBSD</></term>
P
Peter Eisentraut 已提交
2552 2553 2554
      <indexterm><primary>FreeBSD</></>
      <indexterm><primary>NetBSD</></>
      <indexterm><primary>OpenBSD</></>
2555 2556 2557 2558 2559 2560
      <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 已提交
2561
        shows an example of how to set the various parameters:
2562
<programlisting>
2563 2564 2565 2566 2567 2568 2569 2570
options         SYSVSHM
options         SHMMAXPGS=4096
options         SHMSEG=256

options         SYSVSEM
options         SEMMNI=256
options         SEMMNS=512
options         SEMMNU=256
2571 2572
options         SEMMAP=256
</programlisting>
2573 2574
        (On <systemitem class="osname">NetBSD</> and <systemitem
        class="osname">OpenBSD</> the key word is actually
P
Peter Eisentraut 已提交
2575
        <literal>option</literal> singular.)
2576
       </para>
2577 2578 2579 2580
       <para>
        You may also want to use the <application>sysctl</> setting to
        lock shared memory into RAM and prevent it from being paged out
        to swap.
P
Peter Eisentraut 已提交
2581
       </para>
2582 2583 2584 2585 2586
      </listitem>
     </varlistentry>


     <varlistentry>
2587
      <term><systemitem class="osname">HP-UX</></term>
P
Peter Eisentraut 已提交
2588
      <indexterm><primary>HP-UX</></>
2589 2590 2591
      <listitem>
       <para>
        The default settings tend to suffice for normal installations.
P
Peter Eisentraut 已提交
2592
        On <productname>HP-UX</> 10, the factory default for
2593 2594 2595 2596
        <varname>SEMMNS</> is 128, which might be too low for larger
        database sites.
       </para>
       <para>
2597
        <acronym>IPC</> parameters can be set in the <application>System
2598 2599
        Administration Manager</> (<acronym>SAM</>) under
        <menuchoice><guimenu>Kernel
2600 2601
        Configuration</><guimenuitem>Configurable Parameters</></>. Hit
        <guibutton>Create A New Kernel</> when you're done.
2602 2603 2604 2605 2606 2607
       </para>
      </listitem>
     </varlistentry>


     <varlistentry>
2608
      <term><systemitem class="osname">Linux</></term>
P
Peter Eisentraut 已提交
2609
      <indexterm><primary>Linux</></>
2610 2611
      <listitem>
       <para>
P
Peter Eisentraut 已提交
2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623
        The default shared memory limit (both
        <varname>SHMMAX</varname> and <varname>SHMALL</varname>) is 32
        MB in 2.2 kernels, but it can be changed in the
        <filename>proc</filename> file system (without reboot).  For
        example, to allow 128 MB:
<screen>
<prompt>$</prompt> <userinput>echo 134217728 >/proc/sys/kernel/shmall</userinput>
<prompt>$</prompt> <userinput>echo 134217728 >/proc/sys/kernel/shmmax</userinput>
</screen>
        You could put these commands into a script run at boot-time.
       </para>

2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639
       <para>
        Alternatively, you can use
        <citerefentry><refentrytitle>sysctl</refentrytitle>
        <manvolnum>8</manvolnum></citerefentry>, if available, to
        control these parameters.  Look for a file called
        <filename>/etc/sysctl.conf</filename> and add lines like the
        following to it:
<programlisting>
kernel.shmall = 134217728
kernel.shmmax = 134217728
</programlisting>
        This file is usually processed at boot time, but
        <application>sysctl</application> can also be called
        explicitly later.
       </para>

P
Peter Eisentraut 已提交
2640
       <para>
2641 2642 2643 2644
        Other parameters are sufficiently sized for any application. If
        you want to see for yourself look in
        <filename>/usr/src/linux/include/asm-<replaceable>xxx</>/shmpara
        m.h</> and <filename>/usr/src/linux/include/linux/sem.h</>.
2645 2646 2647 2648 2649
       </para>
      </listitem>
     </varlistentry>


B
Bruce Momjian 已提交
2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671
     <varlistentry>
      <term><systemitem class="osname">OS/X</></term>
      <indexterm><primary>OS/X</></>
      <listitem>
       <para>
        Edit the file
        <filename>/System/Library/StartupItems/SystemTuning/SystemTuning
        </> and edit the following values:
<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>
        These values have the same meanings on OS/X as those listed for
        previous operating systems.
       </para>
      </listitem>
     </varlistentry>


2672
     <varlistentry>
2673
      <term><systemitem class="osname">SCO OpenServer</></term>
P
Peter Eisentraut 已提交
2674
      <indexterm><primary>SCO OpenServer</></>
2675 2676 2677 2678
      <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
2679
        12</>. To increase the setting, first change directory to
2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700
        <filename>/etc/conf/cf.d</>. To display the current value of
        <varname>SHMMAX</>, in bytes, run
<programlisting>
./configure -y SHMMAX
</programlisting>
        To set a new value for <varname>SHMMAX</>, run:
<programlisting>
./configure SHMMAX=<replaceable>value</>
</programlisting>
        where <replaceable>value</> is the new value you want to use
        (in bytes). After setting <varname>SHMMAX</>, rebuild the kernel
<programlisting>
./link_unix
</programlisting>
        and reboot.
       </para>
      </listitem>
     </varlistentry>


     <varlistentry>
2701
      <term><systemitem class="osname">Solaris</></term>
P
Peter Eisentraut 已提交
2702
      <indexterm><primary>Solaris</></>
2703 2704
      <listitem>
       <para>
2705 2706
        At least in version 2.6, the default maximum size of a shared
        memory segments is too low for <productname>PostgreSQL</>. The
2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719
        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>
2720
        You need to reboot for the changes to take effect.
2721 2722 2723 2724
       </para>

       <para>
        See also <ulink
2725
        url="http://www.sunworld.com/swol-09-1997/swol-09-insidesolaris.html"></>
2726 2727 2728 2729 2730 2731 2732 2733
        for information on shared memory under
        <productname>Solaris</>.
       </para>
      </listitem>
     </varlistentry>


     <varlistentry>
2734
      <term><systemitem class="osname">UnixWare</></term>
2735
      <indexterm><primary>UnixWare</></>
2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766
      <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
        values, in bytes. To set a new value for <varname>SHMMAX</>,
        run:
<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
        kernel
<programlisting>
/etc/conf/bin/idbuild -B
</programlisting>
        and reboot.
       </para>
      </listitem>
     </varlistentry>

    </variablelist>

   </para>
  </sect2>

2767 2768 2769 2770 2771

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

   <para>
2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786
    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>
    controls the various resource limits set during login. See
2787
    <citerefentry><refentrytitle>login.conf</refentrytitle>
2788
    <manvolnum>5</manvolnum></citerefentry> for details. The relevant
2789
    parameters are <varname>maxproc</varname>,
2790 2791
    <varname>openfiles</varname>, and <varname>datasize</varname>. For
    example:
2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804
<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>
2805
    Kernels can also have system-wide limits on some resources.
2806 2807 2808
    <itemizedlist>
     <listitem>
      <para>
2809 2810
      On <productname>Linux</productname>
      <filename>/proc/sys/fs/file-max</filename> determines the
2811
      maximum number of open files that the kernel will support.  It can
2812 2813 2814 2815 2816 2817
      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.
2818 2819 2820
      </para>
     </listitem>
    </itemizedlist>
2821 2822 2823
   </para>

   <para>
2824
    The <productname>PostgreSQL</productname> server uses one process
2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838
    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>
2839 2840 2841

   <para>
    On the other side of the coin, some systems allow individual
2842 2843 2844 2845 2846 2847
    processes to open large numbers of files; if more than a few
    processes do so then the system-wide limit can easily be exceeded.
    If you find this happening, and don't want to alter the system-wide
    limit, you can set <productname>PostgreSQL</productname>'s
    <varname>max_files_per_process</varname> configuration parameter to
    limit the consumption of open files.
2848
   </para>
2849
  </sect2>
2850 2851 2852 2853

 </sect1>


2854
 <sect1 id="postmaster-shutdown">
2855
  <title>Shutting Down the Server</title>
2856 2857

  <para>
2858 2859 2860
   There are several ways to shut down the database server. You control
   the type of shutdown by sending different signals to the server
   process.
2861 2862
   <variablelist>
    <varlistentry>
2863
     <term><systemitem>SIGTERM</systemitem></term>
2864 2865
     <listitem>
      <para>
2866 2867 2868 2869 2870
       After receiving <systemitem>SIGTERM</systemitem>, the postmaster
       disallows new connections, but lets existing backends end their
       work normally. It shuts down only after all of the backends
       terminate normally. This is <firstterm>Smart
       Shutdown</firstterm>.
2871 2872 2873 2874 2875
      </para>
     </listitem>
    </varlistentry>

    <varlistentry>
2876
     <term><systemitem>SIGINT</systemitem></term>
2877 2878
     <listitem>
      <para>
2879
       The postmaster disallows new connections and sends all existing
2880 2881 2882 2883
       backends <systemitem>SIGTERM</systemitem>, which will cause them
       to abort their current transactions and exit promptly. It then
       waits for the backends to exit and finally shuts down. This is
       <firstterm>Fast Shutdown</firstterm>.
2884 2885 2886 2887 2888
      </para>
     </listitem>
    </varlistentry>

    <varlistentry>
2889
     <term><systemitem>SIGQUIT</systemitem></term>
2890
     <listitem>
2891 2892 2893 2894 2895 2896 2897 2898
      <para> This is <firstterm>Immediate Shutdown</firstterm>, which
      will cause the postmaster to send a
      <systemitem>SIGQUIT</systemitem> to all backends and exit
      immediately (without properly shutting itself down). The backends
      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.
2899 2900 2901 2902 2903
      </para>
     </listitem>
    </varlistentry>
   </variablelist>

2904
   <important>
2905
    <para>
2906 2907 2908 2909
     It is best not to use <systemitem>SIGKILL</systemitem> to shut down
     the postmaster. This will prevent the postmaster from releasing
     shared memory and semaphores, which may then have to be done by
     manually.
2910
    </para>
2911
   </important>
2912

2913
   The <acronym>PID</> of the postmaster process can be found using the
2914 2915 2916 2917
   <application>ps</application> program, or from the file
   <filename>postmaster.pid</filename> in the data directory. So for
   example, to do a fast shutdown:
<screen>
P
Peter Eisentraut 已提交
2918
$ <userinput>kill -INT `head -1 /usr/local/pgsql/data/postmaster.pid`</userinput>
2919 2920 2921 2922
</screen>
  </para>
  <para>
   The program <application>pg_ctl</application> is a shell script
2923 2924
   that provides a more convenient interface for shutting down the
   postmaster.
2925 2926 2927
  </para>
 </sect1>

2928
 <sect1 id="ssl-tcp">
2929
  <title>Secure TCP/IP Connections with SSL</title>
2930

2931 2932 2933 2934
  <indexterm zone="ssl-tcp">
   <primary>SSL</primary>
  </indexterm>

2935
  <para>
2936 2937 2938 2939 2940
   <productname>PostgreSQL</> has native support for using
   <acronym>SSL</> connections to encrypt client/server communications
   for increased security. This requires
   <productname>OpenSSL</productname> be installed on both client and
   server systems and support enabled at build time (see <xref
2941
   linkend="installation">).
2942 2943 2944
  </para>

  <para>
2945
   With SSL support compiled in, the <productname>PostgreSQL</> server
2946 2947 2948 2949 2950 2951 2952 2953 2954 2955
   can be started with SSL support by setting the parameter
   <varname>ssl</varname> to on in
   <filename>postgresql.conf</filename>. When starting in SSL mode,
   the server will look for the files <filename>server.key</> and
   <filename>server.crt</> in the data directory.  These files should
   contain the server private key and certificate respectively. These
   files must be set up correctly before an 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.
2956 2957 2958
  </para>

  <para>
2959 2960 2961 2962
   The server will listen for both standard and SSL connections on the
   same TCP/IP port, and will negotiate with any connecting client on
   whether to use SSL. See <xref linkend="client-authentication"> about
   how to force the server to only use of SSL for certain connections.
2963 2964 2965 2966
  </para>

  <para>
   For details on how to create your server private key and certificate,
2967 2968
   refer to the <productname>OpenSSL</> documentation. A simple
   self-signed certificate can be used to get started for testing, but a
2969
   certificate signed by a certificate authority (<acronym>CA</>) (either one of the global
2970 2971 2972 2973
   <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:
2974
<programlisting>
2975
openssl req -new -text -out server.req
2976
</programlisting>
2977 2978 2979
   Fill out the information that <command>openssl</> asks for. Make sure
   that you enter the local host name as Common Name; the challenge
   password can be left blank. The script will generate a key that is
2980
   passphrase protected; it will not accept a passphrase that is less
2981 2982
   than four characters long. To remove the passphrase (as you must if
   you want automatic start-up of the server), run the commands
2983
<programlisting>
2984 2985
openssl rsa -in privkey.pem -out server.key
rm privkey.pem
2986
</programlisting>
2987
   Enter the old passphrase to unlock the existing key. Now do
2988
<programlisting>
2989 2990
openssl req -x509 -in server.req -text -key server.key -out server.crt
chmod og-rwx server.key
2991
</programlisting>
2992
   to turn the certificate into a self-signed certificate and to copy the
P
Peter Eisentraut 已提交
2993
   key and certificate to where the server will look for them.
2994 2995 2996
  </para>
 </sect1>

2997
 <sect1 id="ssh-tunnels">
2998
  <title>Secure TCP/IP Connections with <application>SSH</application> Tunnels</title>
2999

3000 3001 3002 3003
  <indexterm zone="ssh-tunnels">
   <primary>ssh</primary>
  </indexterm>

3004 3005 3006 3007 3008 3009 3010 3011 3012 3013
  <note>
   <title>Acknowledgement</title>
   <para>
    Idea taken from an email by Gene Selkov, Jr.
    (<email>selkovjr@mcs.anl.gov</>) written on 1999-09-08 in response
    to a question from Eric Marsden.
   </para>
  </note>

  <para>
3014
   One can use <application>SSH</application> to encrypt the network
3015
   connection between clients and a
3016
   <productname>PostgreSQL</productname> server. Done properly, this
3017
   provides an adequately secure network connection.
3018 3019 3020
  </para>

  <para>
3021
   First make sure that an <application>SSH</application> server is
3022
   running properly on the same machine as
3023
   <productname>PostgreSQL</productname> and that you can log in using
3024 3025
   <command>ssh</command> as some user. Then you can establish a secure
   tunnel with a command like this from the client machine:
3026
<programlisting>
3027
ssh -L 3333:foo.com:5432 joe@foo.com
3028 3029 3030 3031
</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
   second number, 5432, is the remote end of the tunnel -- the port
P
Peter Eisentraut 已提交
3032
   number your server is using. The name or the address in between
3033 3034 3035 3036 3037 3038 3039 3040 3041
   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
   authentication procedure was set up for this user. In order for the
3042 3043 3044
   tunnel setup to succeed you must be allowed to connect via
   <command>ssh</command> as <systemitem>joe@foo.com</systemitem>, just
   as if you had attempted to use <command>ssh</command> to set up a
3045 3046 3047
   terminal session.
  </para>

3048 3049
  <tip>
   <para>
3050
    Several other applications exist that can provide secure tunnels using
3051 3052 3053 3054
    a procedure similar in concept to the one just described.
   </para>
  </tip>

3055
 </sect1>
3056 3057

</Chapter>
3058 3059 3060

<!-- Keep this comment at the end of the file
Local variables:
3061
mode:sgml
3062 3063 3064 3065 3066 3067 3068 3069 3070
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
3071
sgml-local-catalogs:("/usr/lib/sgml/catalog")
3072 3073 3074
sgml-local-ecat-files:nil
End:
-->