Skip to content

Instantly share code, notes, and snippets.

@brunoleles
Created June 11, 2024 13:19
Show Gist options
  • Save brunoleles/38ebd6f84d9ac9544988128a450b1394 to your computer and use it in GitHub Desktop.
Save brunoleles/38ebd6f84d9ac9544988128a450b1394 to your computer and use it in GitHub Desktop.
Mongodb Logrotate config example

Mongodb Logrotate config example

Mongodb don't rotate automaticaly its logs, this config to lofrotate does the trick

# File: /etc/logrotate.d/mongodb
/var/log/mongodb/mongod.log {
        daily
        missingok
        rotate 14
        compress
        dateext
        delaycompress
        notifempty
        copytruncate
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment