Skip to content

Instantly share code, notes, and snippets.

@alertor
Forked from srpouyet/mongodb
Created April 11, 2013 08:51
Show Gist options
  • Save alertor/5361831 to your computer and use it in GitHub Desktop.
Save alertor/5361831 to your computer and use it in GitHub Desktop.
# Put this in /etc/logrotate.d/mongodb
# http://stackoverflow.com/questions/5004626/mongodb-log-file-growth
/var/log/mongo/*.log {
daily
rotate 30
compress
dateext
missingok
notifempty
sharedscripts
postrotate
/bin/kill -SIGUSR1 `cat /var/lib/mongo/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