Last active
August 6, 2016 11:57
-
-
Save davidschlachter/05bbfcfa67c2f2ce8dfc435fbcda1d10 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /home/mongobackup | |
source mbackupconfig # Load environment variables with username and password | |
mongodump --username=$MUSER --password=$MPASSWORD --db=osdsvol --host=127.0.0.1 --out=osdsvol | |
mv osdsvol osdsvol.`date "+%Y-%m-%d-%H%M"` | |
tar -zcvf osdsvol.`date "+%Y-%m-%d-%H%M"`.tar.gz osdsvol.`date "+%Y-%m-%d-%H%M"` | |
rm -rf osdsvol.`date "+%Y-%m-%d-%H%M"` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment