]> git.pld-linux.org Git - packages/postgresql.git/blame - postgresql.sysconfig
- added MaxConn and Buffers options to sysconfig and initscript. sometimes
[packages/postgresql.git] / postgresql.sysconfig
CommitLineData
9f8470ac 1# $Revision$
2
9d56d95e 3# Root of the tree of database directories
a869aa78 4POSTGRES_DATA_DIR=/var/lib/pgsql
9d56d95e 5
9d56d95e 6#
bf718f8c 7# postgres(1) backend options run by postmaster
9d56d95e 8#
f019832d 9# run postgres(1) backend in quiet mode
c160250e 10POSTGRES_QUIET=no
9d56d95e 11
5d65b152 12# Enable listening on TCP port. Without this postmaster responds
13# only on unix socket
c160250e 14ALLOW_TCP_CONNECTIONS=no
5d65b152 15
4e273c82 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
21MAXCONN=
22BUFFERS=
23
2a514bb5
SZ
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})
27ALLOW_USE_SSL=no
28
bf718f8c 29# Disable automatic fsync() call after each transaction. This option
9d56d95e 30# improves performance, but an operating system crash while a transaction is
31# in progress will probably cause data loss.
a57096f6 32POSTGRES_DISABLE_FSYNC=no
53dd1abd 33
34# Where postmaster output is redirected
35POSTGRES_LOG=/var/log/pgsql
This page took 0.099277 seconds and 4 git commands to generate.