Skip to content

Instantly share code, notes, and snippets.

@mostafaasadi
Last active February 25, 2018 13:01
Show Gist options
  • Save mostafaasadi/86f09e71866d97a15510ee23c431611a to your computer and use it in GitHub Desktop.
Save mostafaasadi/86f09e71866d97a15510ee23c431611a to your computer and use it in GitHub Desktop.
A tiny script to backup mongodb
# database name as first argument
# it backup database in /var/www/html as zip and remove that database
mongodump -d $1
cd dump
zip -r $1.zip $1
sudo mv *.zip /var/www/html
rm -rf $1
mongo $1 --eval "db.dropDatabase()"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment