web-dev-qa-db-ja.com

なぜPostgresは、「log_filename」によって指示されたログファイル名の規則を尊重しないのですか?

Ubuntu 14.04でPostgres 9.5を使用しています。 /etc/postgresql/9.5/main/postgresql.confファイルでこれらの設定を行っています

log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # log file name pattern,
                                        # can include strftime() escapes
#log_file_mode = 0600                   # creation mode for log files,
                                        # begin with 0 to use octal notation
log_truncate_on_rotation = on           # If on, an existing log file with 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 disables.
log_rotation_size = 50MB                # Automatic rotation of logfiles will
                                        # happen after that much log output.
                                        # 0 disables.

を使用してサーバーを再起動しましたが、

Sudo /etc/init.d/postgresql restart

コマンド、トランザクションを実行してログを確認すると、ログファイルがファイル名を考慮していない…

myuser@mymachine:~$ ls -al /var/log/postgresql/
total 1912144
drwxrwxr-t  2 root     postgres       4096 Dec 31 14:27 .
drwxrwxr-x 14 root     syslog         4096 Dec 31 06:55 ..
-rw-r-----  1 postgres postgres 1957826560 Dec 31 14:30 postgresql-9.5-main.log
-rw-r-----  1 postgres postgres     194785 Dec 26 06:46 postgresql-9.5-main.log.1

Postgresが構成ファイルで指定したファイル名の規則を尊重しないのはなぜですか。

5
Dave

logging_collectorlog_directoryの値を編集して、ログを管理する場所とログの保存場所を認識させる必要があります。

https://www.postgresql.org/docs/9.5/static/runtime-config-logging.html

log_filenameのセクションをご覧ください。

1
Larry