November 2019
Beginner to intermediate
470 pages
11h 59m
English
Let's go through the postgresql.conf file and see what can be done:
#----------------------------------------------------------------- # REPORTING AND LOGGING #---------------------------------------------------------------- # - Where to Log - #log_destination = 'stderr' # Valid values are combinations of # stderr, csvlog, syslog, and eventlog, # depending on platform. csvlog # requires logging_collector to be on. # This is used when logging to stderr: #logging_collector = off # Enable capturing of stderr and csvlog # into log files. Required to be on for # csvlogs. # (change requires restart)
The first configuration option defines how the log is processed. By default, it will go to stderr (on ...