1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
# /etc/postgresql/postmaster.conf
#
# Copyright (c) Oliver Elphick 1997, 2001
# Part of the Debian package, postgresql. The Debian packaging is
# licensed under GPL v.2
#
# This is the configurable initialisation of the postgresql package
# The defaults are shown, but are commented out.
#
# As of release 7.1, many parameters may now be found in
# /etc/postgresql/postgresql.conf. To avoid confusion, these can
# no longer be set here, even though the command line options that
# used to control them do still exist.
#
POSTGRES_HOME=`getent passwd postgres | awk -F: '{print $6}' | head -1`
if [ -z "$POSTGRES_HOME" ]
then
POSTGRES_HOME=/var/lib/postgres
fi
# Where to find the PostgreSQL database files, including those that
# define PostgresSQL users and permissions.
# POSTGRES_DATA=/var/lib/postgres/data
# Where to send logging and debugging traces. By default, very little
# should appear here, because SYSLOG is set to 2 in postgresql.conf, so
# that all messages are sent to syslog only.
# POSTGRES_LOG=/var/log/postgres.log
# How (by default) to present dates to the frontend; the user can override
# this setting for his own session. The choices are:
# Style Date Datetime
# ----------------------------------------------------------------
# ISO 1999-07-17 1999-07-17 07:09:18+01
# SQL 17/07/1999 17/07/1999 07:09:19.00 BST
# POSTGRES 17-07-1999 Sat 17 Jul 07:09:19 1999 BST
# GERMAN 17.07.1999 17.07.1999 07:09:19.00 BST
#
# It is also possible to specify month-day or day-month ordering in date
# input and output. Americans tend to use month-day; Europeans use
# day-month. Specify European or nonEuropean. Separate the two parameters
# by a comma with no spaces
# PGDATESTYLE=ISO,European
# Any special options to pass to the postmaster through pg_ctl's -o option.
# This may include such options as "-h hostname", for which there is no
# parameter defined. However most options can be set by editing
# postgresql.conf appropriately.
POSTMASTER_OPTIONS=""
# Minimum number of entries in the kernel file table. If the table size is
# lower, postgresql.startup attempts to increase it by writing this parameter
# into /proc/sys/kernel/file-max. This is only effective if the kernel has
# been compiled to support run-time configuration.
# KERNEL_FILE_MAX=1032
|