]> git.pld-linux.org Git - packages/postgresql.git/blob - postgresql.sysconfig
- added MaxConn and Buffers options to sysconfig and initscript. sometimes
[packages/postgresql.git] / postgresql.sysconfig
1 # $Revision$
2
3 # Root of the tree of database directories
4 POSTGRES_DATA_DIR=/var/lib/pgsql
5
6 #
7 # postgres(1) backend options run by postmaster
8 #
9 # run postgres(1) backend in quiet mode
10 POSTGRES_QUIET=no
11
12 # Enable listening on TCP port. Without this postmaster responds
13 # only on unix socket
14 ALLOW_TCP_CONNECTIONS=no
15
16 # For production machines you should increase those numbers to avoid "Too 
17 # many connections" messages. Buffers should be (at least) MaxConn*2.
18 # But: watch carefully that you won't exceed system resources!!
19 # Leave it blank to have default (safe) 32 clients/64 buffers.
20
21 MAXCONN=
22 BUFFERS=
23
24 # Allow using SSL on TCP connections. Requires ALLOW_TCP_CONNECTIONS to be
25 # set to yes. Also, you must supply key and certificate files
26 # ($POSTGRES_DATA_DIR/server.{key,crt})
27 ALLOW_USE_SSL=no
28
29 # Disable automatic fsync() call after each transaction. This option
30 # improves performance, but an operating system crash while a transaction is
31 # in progress will probably cause data loss.
32 POSTGRES_DISABLE_FSYNC=no
33
34 # Where postmaster output is redirected
35 POSTGRES_LOG=/var/log/pgsql
This page took 0.051649 seconds and 4 git commands to generate.