]> git.pld-linux.org Git - packages/postgresql.git/blame_incremental - postgresql.sysconfig
- more things, reminder about password etc
[packages/postgresql.git] / postgresql.sysconfig
... / ...
CommitLineData
1# $Revision$
2
3# Root of the tree of database directories
4POSTGRES_DATA_DIR=/var/lib/pgsql
5
6#
7# postgres(1) backend options run by postmaster
8#
9# run postgres(1) backend in quiet mode
10POSTGRES_QUIET=no
11
12# Enable listening on TCP port. Without this postmaster responds
13# only on unix socket
14ALLOW_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
21MAXCONN=
22BUFFERS=
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})
27ALLOW_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.
32POSTGRES_DISABLE_FSYNC=no
33
34# Where postmaster output is redirected
35POSTGRES_LOG=/var/log/pgsql
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.07476 seconds and 4 git commands to generate.