Skip to content

Instantly share code, notes, and snippets.

@nassor
Created November 13, 2013 07:53
Show Gist options
  • Save nassor/7445313 to your computer and use it in GitHub Desktop.
Save nassor/7445313 to your computer and use it in GitHub Desktop.
Backup and compact a MongoDB database
#!/bin/bash
cd /data/backups/
mongodump -d <dbname>
today=$(date +"%Y%m%d") && tar cvzf "<dbname>-$today.tar.gz" dump/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment