⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 postgresql.conf.sample

📁 postgresql8.3.4源码,开源数据库
💻 SAMPLE
📖 第 1 页 / 共 2 页
字号:
#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log'	# log file name pattern,					# can include strftime() escapes#log_truncate_on_rotation = off		# If on, an existing log file of the					# same name as the new log file will be					# truncated rather than appended to.					# But such truncation only occurs on					# time-driven rotation, not on restarts					# or size-driven rotation.  Default is					# off, meaning append to existing files					# in all cases.#log_rotation_age = 1d			# Automatic rotation of logfiles will					# happen after that time.  0 to disable.#log_rotation_size = 10MB		# Automatic rotation of logfiles will 					# happen after that much log output.					# 0 to disable.# These are relevant when logging to syslog:#syslog_facility = 'LOCAL0'#syslog_ident = 'postgres'# - When to Log -#client_min_messages = notice		# values in order of decreasing detail:					#   debug5					#   debug4					#   debug3					#   debug2					#   debug1					#   log					#   notice					#   warning					#   error#log_min_messages = notice		# values in order of decreasing detail:					#   debug5					#   debug4					#   debug3					#   debug2					#   debug1					#   info					#   notice					#   warning					#   error					#   log					#   fatal					#   panic#log_error_verbosity = default		# terse, default, or verbose messages#log_min_error_statement = error	# values in order of decreasing detail:				 	#   debug5					#   debug4					#   debug3					#   debug2					#   debug1				 	#   info					#   notice					#   warning					#   error					#   log					#   fatal					#   panic (effectively off)#log_min_duration_statement = -1	# -1 is disabled, 0 logs all statements					# and their durations, > 0 logs only					# statements running at least this time.#silent_mode = off			# DO NOT USE without syslog or					# logging_collector					# (change requires restart)# - What to Log -#debug_print_parse = off#debug_print_rewritten = off#debug_print_plan = off#debug_pretty_print = off#log_checkpoints = off#log_connections = off#log_disconnections = off#log_duration = off#log_hostname = off#log_line_prefix = ''			# special values:					#   %u = user name					#   %d = database name					#   %r = remote host and port					#   %h = remote host					#   %p = process ID					#   %t = timestamp without milliseconds					#   %m = timestamp with milliseconds					#   %i = command tag					#   %c = session ID					#   %l = session line number					#   %s = session start timestamp					#   %v = virtual transaction ID					#   %x = transaction ID (0 if none)					#   %q = stop here in non-session					#        processes					#   %% = '%'					# e.g. '<%u%%%d> '#log_lock_waits = off			# log lock waits >= deadlock_timeout#log_statement = 'none'			# none, ddl, mod, all#log_temp_files = -1			# log temporary files equal or larger					# than specified size;					# -1 disables, 0 logs all temp files#log_timezone = unknown			# actually, defaults to TZ environment					# setting#------------------------------------------------------------------------------# RUNTIME STATISTICS#------------------------------------------------------------------------------# - Query/Index Statistics Collector -#track_activities = on#track_counts = on#update_process_title = on# - Statistics Monitoring -#log_parser_stats = off#log_planner_stats = off#log_executor_stats = off#log_statement_stats = off#------------------------------------------------------------------------------# AUTOVACUUM PARAMETERS#------------------------------------------------------------------------------#autovacuum = on			# Enable autovacuum subprocess?  'on' 					# requires track_counts to also be on.#log_autovacuum_min_duration = -1	# -1 disables, 0 logs all actions and					# their durations, > 0 logs only					# actions running at least that time.#autovacuum_max_workers = 3		# max number of autovacuum subprocesses#autovacuum_naptime = 1min		# time between autovacuum runs#autovacuum_vacuum_threshold = 50	# min number of row updates before					# vacuum#autovacuum_analyze_threshold = 50	# min number of row updates before 					# analyze#autovacuum_vacuum_scale_factor = 0.2	# fraction of table size before vacuum#autovacuum_analyze_scale_factor = 0.1	# fraction of table size before analyze#autovacuum_freeze_max_age = 200000000	# maximum XID age before forced vacuum					# (change requires restart)#autovacuum_vacuum_cost_delay = 20	# default vacuum cost delay for					# autovacuum, -1 means use					# vacuum_cost_delay#autovacuum_vacuum_cost_limit = -1	# default vacuum cost limit for					# autovacuum, -1 means use					# vacuum_cost_limit#------------------------------------------------------------------------------# CLIENT CONNECTION DEFAULTS#------------------------------------------------------------------------------# - Statement Behavior -#search_path = '"$user",public'		# schema names#default_tablespace = ''		# a tablespace name, '' uses the default#temp_tablespaces = ''			# a list of tablespace names, '' uses					# only default tablespace#check_function_bodies = on#default_transaction_isolation = 'read committed'#default_transaction_read_only = off#session_replication_role = 'origin'#statement_timeout = 0			# 0 is disabled#vacuum_freeze_min_age = 100000000#xmlbinary = 'base64'#xmloption = 'content'# - Locale and Formatting -#datestyle = 'iso, mdy'#timezone = unknown			# actually, defaults to TZ environment					# setting#timezone_abbreviations = 'Default'     # Select the set of available time zone					# abbreviations.  Currently, there are					#   Default					#   Australia					#   India					# You can create your own file in					# share/timezonesets/.#extra_float_digits = 0			# min -15, max 2#client_encoding = sql_ascii		# actually, defaults to database					# encoding# These settings are initialized by initdb, but they can be changed.#lc_messages = 'C'			# locale for system error message					# strings#lc_monetary = 'C'			# locale for monetary formatting#lc_numeric = 'C'			# locale for number formatting#lc_time = 'C'				# locale for time formatting# default configuration for text search#default_text_search_config = 'pg_catalog.simple'# - Other Defaults -#explain_pretty_print = on#dynamic_library_path = '$libdir'#local_preload_libraries = ''#------------------------------------------------------------------------------# LOCK MANAGEMENT#------------------------------------------------------------------------------#deadlock_timeout = 1s#max_locks_per_transaction = 64		# min 10					# (change requires restart)# Note:  Each lock table slot uses ~270 bytes of shared memory, and there are# max_locks_per_transaction * (max_connections + max_prepared_transactions)# lock table slots.#------------------------------------------------------------------------------# VERSION/PLATFORM COMPATIBILITY#------------------------------------------------------------------------------# - Previous PostgreSQL Versions -#add_missing_from = off#array_nulls = on#backslash_quote = safe_encoding	# on, off, or safe_encoding#default_with_oids = off#escape_string_warning = on#regex_flavor = advanced		# advanced, extended, or basic#sql_inheritance = on#standard_conforming_strings = off#synchronize_seqscans = on# - Other Platforms and Clients -#transform_null_equals = off#------------------------------------------------------------------------------# CUSTOMIZED OPTIONS#------------------------------------------------------------------------------#custom_variable_classes = ''		# list of custom variable class names

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -