]> git.pld-linux.org Git - packages/postgresql.git/blame - postgresql.sysconfig
- more things, reminder about password etc
[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
e80db27f 36
37# Default database chcaracter encoding
38# Avaible character sets:
39#
40# Encoding | Description
41# --------------------------------------------------------------
42# SQL_ASCII | ASCII
43# EUC_JP | Japanese EUC
44# EUC_CN | Chinese EUC
45# EUC_KR | Korean EUC
46# EUC_TW | Taiwan EUC
47# UNICODE | Unicode(UTF-8)
48# MULE_INTERNAL | Mule internal
49# LATIN1 | ISO 8859-1 English and some European languages
50# LATIN2 | ISO 8859-2 English and some European languages
51# LATIN3 | ISO 8859-3 English and some European languages
52# LATIN4 | ISO 8859-4 English and some European languages
53# LATIN5 | ISO 8859-5 English and some European languages
54# KOI8 | KOI8-R
55# WIN | Windows CP1251
56# ALT | Windows CP866
57ENCODING=UNICODE
This page took 0.109775 seconds and 4 git commands to generate.