| repmgr 4.0.6 Documentation | |||
|---|---|---|---|
| Prev | Up | Chapter 13. repmgrd configuration | Next |
To ensure the current repmgrd logfile (specified in repmgr.conf with the parameter log_file does not grow indefinitely, configure your system's logrotate to regularly rotate it.
Sample configuration to rotate logfiles weekly with retention for up to 52 weeks and rotation forced if a file grows beyond 100Mb:
/var/log/postgresql/repmgr-9.6.log {
missingok
compress
rotate 52
maxsize 100M
weekly
create 0600 postgres postgres
}