Skip to content

Instantly share code, notes, and snippets.

@imbolc
Forked from srpouyet/mongodb
Last active August 13, 2016 08:03
Show Gist options
  • Save imbolc/b2833752ca259cb89eccaeceabb237ab to your computer and use it in GitHub Desktop.
Save imbolc/b2833752ca259cb89eccaeceabb237ab to your computer and use it in GitHub Desktop.
Mongodb logrotate on debian Jessie
# Put this in /etc/logrotate.d/mongodb
# http://stackoverflow.com/questions/5004626/mongodb-log-file-growth
/var/log/mongodb/*.log {
daily
rotate 30
compress
dateext
missingok
notifempty
sharedscripts
postrotate
/bin/kill -SIGUSR1 `cat /var/lib/mongodb/mongod.lock 2> /dev/null` 2> /dev/null || true
endscript
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment