Project

General

Profile

1
# -----------------------------
2
# PostgreSQL configuration file
3
# -----------------------------
4
#
5
# This file consists of lines of the form:
6
#
7
#   name = value
8
#
9
# (The "=" is optional.)  Whitespace may be used.  Comments are introduced with
10
# "#" anywhere on a line.  The complete list of parameter names and allowed
11
# values can be found in the PostgreSQL documentation.
12
#
13
# The commented-out settings shown in this file represent the default values.
14
# Re-commenting a setting is NOT sufficient to revert it to the default value;
15
# you need to reload the server.
16
#
17
# This file is read on server startup and when the server receives a SIGHUP
18
# signal.  If you edit the file on a running system, you have to SIGHUP the
19
# server for the changes to take effect, or use "pg_ctl reload".  Some
20
# parameters, which are marked below, require a server shutdown and restart to
21
# take effect.
22
#
23
# Any parameter can also be given as a command-line option to the server, e.g.,
24
# "postgres -c log_connections=on".  Some paramters can be changed at run time
25
# with the "SET" SQL command.
26
#
27
# Memory units:  kB = kilobytes MB = megabytes GB = gigabytes
28
# Time units:    ms = milliseconds s = seconds min = minutes h = hours d = days
29

    
30

    
31
#------------------------------------------------------------------------------
32
# FILE LOCATIONS
33
#------------------------------------------------------------------------------
34

    
35
# The default values of these variables are driven from the -D command-line
36
# option or PGDATA environment variable, represented here as ConfigDir.
37

    
38
data_directory = '/var/lib/postgresql/8.3/main'		# use data in another directory
39
					# (change requires restart)
40
hba_file = '/etc/postgresql/8.3/main/pg_hba.conf'	# host-based authentication file
41
					# (change requires restart)
42
ident_file = '/etc/postgresql/8.3/main/pg_ident.conf'	# ident configuration file
43
					# (change requires restart)
44

    
45
# If external_pid_file is not explicitly set, no extra PID file is written.
46
external_pid_file = '/var/run/postgresql/8.3-main.pid'		# write an extra PID file
47
					# (change requires restart)
48

    
49

    
50
#------------------------------------------------------------------------------
51
# CONNECTIONS AND AUTHENTICATION
52
#------------------------------------------------------------------------------
53

    
54
# - Connection Settings -
55

    
56
listen_addresses = '*'		# what IP address(es) to listen on;
57
					# comma-separated list of addresses;
58
					# defaults to 'localhost', '*' = all
59
					# (change requires restart)
60
port = 5432				# (change requires restart)
61
max_connections = 100			# (change requires restart)
62
# Note:  Increasing max_connections costs ~400 bytes of shared memory per 
63
# connection slot, plus lock space (see max_locks_per_transaction).  You might
64
# also need to raise shared_buffers to support more connections.
65
#superuser_reserved_connections = 3	# (change requires restart)
66
unix_socket_directory = '/var/run/postgresql'		# (change requires restart)
67
#unix_socket_group = ''			# (change requires restart)
68
#unix_socket_permissions = 0777		# begin with 0 to use octal notation
69
					# (change requires restart)
70
#bonjour_name = ''			# defaults to the computer name
71
					# (change requires restart)
72

    
73
# - Security and Authentication -
74

    
75
#authentication_timeout = 1min		# 1s-600s
76
ssl = true				# (change requires restart)
77
#ssl_ciphers = 'ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH'	# allowed SSL ciphers
78
					# (change requires restart)
79
#ssl_renegotiation_limit = 512MB	# amount of data between renegotiations
80
#password_encryption = on
81
#db_user_namespace = off
82

    
83
# Kerberos and GSSAPI
84
#krb_server_keyfile = ''		# (change requires restart)
85
#krb_srvname = 'postgres'		# (change requires restart, Kerberos only)
86
#krb_server_hostname = ''		# empty string matches any keytab entry
87
					# (change requires restart, Kerberos only)
88
#krb_caseins_users = off		# (change requires restart)
89
#krb_realm = ''           		# (change requires restart)
90

    
91
# - TCP Keepalives -
92
# see "man 7 tcp" for details
93

    
94
#tcp_keepalives_idle = 0		# TCP_KEEPIDLE, in seconds;
95
					# 0 selects the system default
96
#tcp_keepalives_interval = 0		# TCP_KEEPINTVL, in seconds;
97
					# 0 selects the system default
98
#tcp_keepalives_count = 0		# TCP_KEEPCNT;
99
					# 0 selects the system default
100

    
101

    
102
#------------------------------------------------------------------------------
103
# RESOURCE USAGE (except WAL)
104
#------------------------------------------------------------------------------
105

    
106
# - Memory -
107

    
108
# Set to SHMMAX
109
shared_buffers = 24MB			# min 128kB or max_connections*16kB
110
					# (change requires restart)
111
#temp_buffers = 8MB			# min 800kB
112
#max_prepared_transactions = 5		# can be 0 or more
113
					# (change requires restart)
114
# Note:  Increasing max_prepared_transactions costs ~600 bytes of shared memory
115
# per transaction slot, plus lock space (see max_locks_per_transaction).
116
work_mem = 256MB				# min 64kB
117
#work_mem = 1MB				# min 64kB
118
maintenance_work_mem = 256MB		# min 1MB
119
#maintenance_work_mem = 16MB		# min 1MB
120
#max_stack_depth = 2MB			# min 100kB
121

    
122
# - Free Space Map -
123

    
124
max_fsm_pages = 153600			# min max_fsm_relations*16, 6 bytes each
125
					# (change requires restart)
126
#max_fsm_relations = 1000		# min 100, ~70 bytes each
127
					# (change requires restart)
128

    
129
# - Kernel Resource Usage -
130

    
131
#max_files_per_process = 1000		# min 25
132
					# (change requires restart)
133
#shared_preload_libraries = ''		# (change requires restart)
134

    
135
# - Cost-Based Vacuum Delay -
136

    
137
#vacuum_cost_delay = 0			# 0-1000 milliseconds
138
#vacuum_cost_page_hit = 1		# 0-10000 credits
139
#vacuum_cost_page_miss = 10		# 0-10000 credits
140
#vacuum_cost_page_dirty = 20		# 0-10000 credits
141
#vacuum_cost_limit = 200		# 1-10000 credits
142

    
143
# - Background Writer -
144

    
145
#bgwriter_delay = 200ms			# 10-10000ms between rounds
146
#bgwriter_lru_maxpages = 100		# 0-1000 max buffers written/round
147
#bgwriter_lru_multiplier = 2.0		# 0-10.0 multipler on buffers scanned/round
148

    
149

    
150
#------------------------------------------------------------------------------
151
# WRITE AHEAD LOG
152
#------------------------------------------------------------------------------
153

    
154
# - Settings -
155

    
156
#fsync = on				# turns forced synchronization on or off
157
##### WARNING: Switching this off may cause data loss.
158
# It is used to improve performance with frequent commits. Each datasource makes
159
# ~10 commits/sec (which will hopefully increase after optimization), and there
160
# can be 10+ datasources running simultaneously, so the 100 commit/sec limit may
161
# be exceeded. See synchronous_commit at
162
# <http://wiki.postgresql.org/wiki/Tuning_Your_PostgreSQL_Server#synchronous_commit>
163
#####
164
synchronous_commit = off		# immediate fsync at commit
165
#wal_sync_method = fsync		# the default is the first option 
166
					# supported by the operating system:
167
					#   open_datasync
168
					#   fdatasync
169
					#   fsync
170
					#   fsync_writethrough
171
					#   open_sync
172
#full_page_writes = on			# recover from partial page writes
173
#wal_buffers = 64kB			# min 32kB
174
					# (change requires restart)
175
#wal_writer_delay = 200ms		# 1-10000 milliseconds
176

    
177
#commit_delay = 0			# range 0-100000, in microseconds
178
#commit_siblings = 5			# range 1-1000
179

    
180
# - Checkpoints -
181

    
182
#checkpoint_segments = 3		# in logfile segments, min 1, 16MB each
183
#checkpoint_timeout = 5min		# range 30s-1h
184
#checkpoint_completion_target = 0.5	# checkpoint target duration, 0.0 - 1.0
185
#checkpoint_warning = 30s		# 0 is off
186

    
187
# - Archiving -
188

    
189
#archive_mode = off		# allows archiving to be done
190
				# (change requires restart)
191
#archive_command = ''		# command to use to archive a logfile segment
192
#archive_timeout = 0		# force a logfile segment switch after this
193
				# time; 0 is off
194

    
195

    
196
#------------------------------------------------------------------------------
197
# QUERY TUNING
198
#------------------------------------------------------------------------------
199

    
200
# - Planner Method Configuration -
201

    
202
#enable_bitmapscan = on
203
#enable_hashagg = on
204
#enable_hashjoin = on
205
#enable_indexscan = on
206
#enable_mergejoin = on
207
#enable_nestloop = on
208
#enable_seqscan = on
209
#enable_sort = on
210
#enable_tidscan = on
211

    
212
# - Planner Cost Constants -
213

    
214
#seq_page_cost = 1.0			# measured on an arbitrary scale
215
#random_page_cost = 4.0			# same scale as above
216
#cpu_tuple_cost = 0.01			# same scale as above
217
#cpu_index_tuple_cost = 0.005		# same scale as above
218
#cpu_operator_cost = 0.0025		# same scale as above
219
effective_cache_size = 6GB
220

    
221
# - Genetic Query Optimizer -
222

    
223
#geqo = on
224
#geqo_threshold = 12
225
#geqo_effort = 5			# range 1-10
226
#geqo_pool_size = 0			# selects default based on effort
227
#geqo_generations = 0			# selects default based on effort
228
#geqo_selection_bias = 2.0		# range 1.5-2.0
229

    
230
# - Other Planner Options -
231

    
232
#default_statistics_target = 10		# range 1-1000
233
#constraint_exclusion = off
234
#from_collapse_limit = 8
235
#join_collapse_limit = 8		# 1 disables collapsing of explicit 
236
					# JOIN clauses
237

    
238

    
239
#------------------------------------------------------------------------------
240
# ERROR REPORTING AND LOGGING
241
#------------------------------------------------------------------------------
242

    
243
# - Where to Log -
244

    
245
#log_destination = 'stderr'		# Valid values are combinations of
246
					# stderr, csvlog, syslog and eventlog,
247
					# depending on platform.  csvlog
248
					# requires logging_collector to be on.
249

    
250
# This is used when logging to stderr:
251
#logging_collector = off		# Enable capturing of stderr and csvlog
252
					# into log files. Required to be on for
253
					# csvlogs.
254
					# (change requires restart)
255

    
256
# These are only used if logging_collector is on:
257
#log_directory = 'pg_log'		# directory where log files are written,
258
					# can be absolute or relative to PGDATA
259
#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log'	# log file name pattern,
260
					# can include strftime() escapes
261
#log_truncate_on_rotation = off		# If on, an existing log file of the
262
					# same name as the new log file will be
263
					# truncated rather than appended to.
264
					# But such truncation only occurs on
265
					# time-driven rotation, not on restarts
266
					# or size-driven rotation.  Default is
267
					# off, meaning append to existing files
268
					# in all cases.
269
#log_rotation_age = 1d			# Automatic rotation of logfiles will
270
					# happen after that time.  0 to disable.
271
#log_rotation_size = 10MB		# Automatic rotation of logfiles will 
272
					# happen after that much log output.
273
					# 0 to disable.
274

    
275
# These are relevant when logging to syslog:
276
#syslog_facility = 'LOCAL0'
277
#syslog_ident = 'postgres'
278

    
279

    
280
# - When to Log -
281

    
282
#client_min_messages = notice		# values in order of decreasing detail:
283
					#   debug5
284
					#   debug4
285
					#   debug3
286
					#   debug2
287
					#   debug1
288
					#   log
289
					#   notice
290
					#   warning
291
					#   error
292

    
293
#log_min_messages = notice		# values in order of decreasing detail:
294
					#   debug5
295
					#   debug4
296
					#   debug3
297
					#   debug2
298
					#   debug1
299
					#   info
300
					#   notice
301
					#   warning
302
					#   error
303
					#   log
304
					#   fatal
305
					#   panic
306

    
307
#log_error_verbosity = default		# terse, default, or verbose messages
308

    
309
#log_min_error_statement = error	# values in order of decreasing detail:
310
				 	#   debug5
311
					#   debug4
312
					#   debug3
313
					#   debug2
314
					#   debug1
315
				 	#   info
316
					#   notice
317
					#   warning
318
					#   error
319
					#   log
320
					#   fatal
321
					#   panic (effectively off)
322

    
323
#log_min_duration_statement = -1	# -1 is disabled, 0 logs all statements
324
					# and their durations, > 0 logs only
325
					# statements running at least this time.
326

    
327
#silent_mode = off			# DO NOT USE without syslog or
328
					# logging_collector
329
					# (change requires restart)
330

    
331
# - What to Log -
332

    
333
#debug_print_parse = off
334
#debug_print_rewritten = off
335
#debug_print_plan = off
336
#debug_pretty_print = off
337
#log_checkpoints = off
338
#log_connections = off
339
#log_disconnections = off
340
#log_duration = off
341
#log_hostname = off
342
log_line_prefix = '%t '			# special values:
343
					#   %u = user name
344
					#   %d = database name
345
					#   %r = remote host and port
346
					#   %h = remote host
347
					#   %p = process ID
348
					#   %t = timestamp without milliseconds
349
					#   %m = timestamp with milliseconds
350
					#   %i = command tag
351
					#   %c = session ID
352
					#   %l = session line number
353
					#   %s = session start timestamp
354
					#   %v = virtual transaction ID
355
					#   %x = transaction ID (0 if none)
356
					#   %q = stop here in non-session
357
					#        processes
358
					#   %% = '%'
359
					# e.g. '<%u%%%d> '
360
#log_lock_waits = off			# log lock waits >= deadlock_timeout
361
#log_statement = 'none'			# none, ddl, mod, all
362
#log_temp_files = -1			# log temporary files equal or larger
363
					# than specified size;
364
					# -1 disables, 0 logs all temp files
365
#log_timezone = unknown			# actually, defaults to TZ environment
366
					# setting
367

    
368

    
369
#------------------------------------------------------------------------------
370
# RUNTIME STATISTICS
371
#------------------------------------------------------------------------------
372

    
373
# - Query/Index Statistics Collector -
374

    
375
#track_activities = on
376
#track_counts = on
377
#update_process_title = on
378

    
379

    
380
# - Statistics Monitoring -
381

    
382
#log_parser_stats = off
383
#log_planner_stats = off
384
#log_executor_stats = off
385
#log_statement_stats = off
386

    
387

    
388
#------------------------------------------------------------------------------
389
# AUTOVACUUM PARAMETERS
390
#------------------------------------------------------------------------------
391

    
392
#autovacuum = on			# Enable autovacuum subprocess?  'on' 
393
					# requires track_counts to also be on.
394
#log_autovacuum_min_duration = -1	# -1 disables, 0 logs all actions and
395
					# their durations, > 0 logs only
396
					# actions running at least that time.
397
#autovacuum_max_workers = 3		# max number of autovacuum subprocesses
398
#autovacuum_naptime = 1min		# time between autovacuum runs
399
#autovacuum_vacuum_threshold = 50	# min number of row updates before
400
					# vacuum
401
#autovacuum_analyze_threshold = 50	# min number of row updates before 
402
					# analyze
403
#autovacuum_vacuum_scale_factor = 0.2	# fraction of table size before vacuum
404
#autovacuum_analyze_scale_factor = 0.1	# fraction of table size before analyze
405
#autovacuum_freeze_max_age = 200000000	# maximum XID age before forced vacuum
406
					# (change requires restart)
407
#autovacuum_vacuum_cost_delay = 20	# default vacuum cost delay for
408
					# autovacuum, -1 means use
409
					# vacuum_cost_delay
410
#autovacuum_vacuum_cost_limit = -1	# default vacuum cost limit for
411
					# autovacuum, -1 means use
412
					# vacuum_cost_limit
413

    
414

    
415
#------------------------------------------------------------------------------
416
# CLIENT CONNECTION DEFAULTS
417
#------------------------------------------------------------------------------
418

    
419
# - Statement Behavior -
420

    
421
#search_path = '"$user",public'		# schema names
422
#default_tablespace = ''		# a tablespace name, '' uses the default
423
#temp_tablespaces = ''			# a list of tablespace names, '' uses
424
					# only default tablespace
425
#check_function_bodies = on
426
#default_transaction_isolation = 'read committed'
427
#default_transaction_read_only = off
428
#session_replication_role = 'origin'
429
#statement_timeout = 0			# 0 is disabled
430
#vacuum_freeze_min_age = 100000000
431
#xmlbinary = 'base64'
432
#xmloption = 'content'
433

    
434
# - Locale and Formatting -
435

    
436
datestyle = 'iso, mdy'
437
#timezone = unknown			# actually, defaults to TZ environment
438
					# setting
439
#timezone_abbreviations = 'Default'     # Select the set of available time zone
440
					# abbreviations.  Currently, there are
441
					#   Default
442
					#   Australia
443
					#   India
444
					# You can create your own file in
445
					# share/timezonesets/.
446
#extra_float_digits = 0			# min -15, max 2
447
#client_encoding = sql_ascii		# actually, defaults to database
448
					# encoding
449

    
450
# These settings are initialized by initdb, but they can be changed.
451
lc_messages = 'en_US.UTF-8'			# locale for system error message
452
					# strings
453
lc_monetary = 'en_US.UTF-8'			# locale for monetary formatting
454
lc_numeric = 'en_US.UTF-8'			# locale for number formatting
455
lc_time = 'en_US.UTF-8'				# locale for time formatting
456

    
457
# default configuration for text search
458
default_text_search_config = 'pg_catalog.english'
459

    
460
# - Other Defaults -
461

    
462
#explain_pretty_print = on
463
#dynamic_library_path = '$libdir'
464
#local_preload_libraries = ''
465

    
466

    
467
#------------------------------------------------------------------------------
468
# LOCK MANAGEMENT
469
#------------------------------------------------------------------------------
470

    
471
#deadlock_timeout = 1s
472
#max_locks_per_transaction = 64		# min 10
473
					# (change requires restart)
474
# Note:  Each lock table slot uses ~270 bytes of shared memory, and there are
475
# max_locks_per_transaction * (max_connections + max_prepared_transactions)
476
# lock table slots.
477

    
478

    
479
#------------------------------------------------------------------------------
480
# VERSION/PLATFORM COMPATIBILITY
481
#------------------------------------------------------------------------------
482

    
483
# - Previous PostgreSQL Versions -
484

    
485
#add_missing_from = off
486
#array_nulls = on
487
#backslash_quote = safe_encoding	# on, off, or safe_encoding
488
#default_with_oids = off
489
#escape_string_warning = on
490
#regex_flavor = advanced		# advanced, extended, or basic
491
#sql_inheritance = on
492
#standard_conforming_strings = off
493
#synchronize_seqscans = on
494

    
495
# - Other Platforms and Clients -
496

    
497
#transform_null_equals = off
498

    
499

    
500
#------------------------------------------------------------------------------
501
# CUSTOMIZED OPTIONS
502
#------------------------------------------------------------------------------
503

    
504
#custom_variable_classes = ''		# list of custom variable class names
(5-5/17)