PostgreSQL

PostgreSQL Logrotate 설정

DevelopC 2017. 8. 12. 20:37
728x90

PostgreSQL Logrotate 설정

PostgreSQL의 기본기능에도 Logrotate설정이 있지만 여러모로 Linux의 Logrotate설정하는게 더 편하므로 아래의 설정을 추가합니다.

/etc/logrotate.d/postgres 해당 파일에 아래의 내용을 입력하여 저장하시면 됩니다.

/var/lib/postgresql/9.6/main/pg_log/postgresql.log {
        daily
        rotate 14
        copytruncate
        compress
        delaycompress
        notifempty
        missingok
        create 600 postgres postgres
}

 

728x90