Skip to content

Instantly share code, notes, and snippets.

@fideloper
Created March 6, 2013 16:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fideloper/5100496 to your computer and use it in GitHub Desktop.
Save fideloper/5100496 to your computer and use it in GitHub Desktop.
Uses mongodump and s3cmd to backup mongo and upload to s3.
#!/bin/bash
# THIS VERSION WILL ASK YOU FOR THE DATABASE NAME AND WHERE TO SAVE IT LOCALLY
function show_usage {
echo "Usage: $0 database-name save-directory"
exit 1
}
#Need two parameters
if [ $# -ne 2 ]; then
echo "Two parameters required"
show_usage;
fi
#Second parameter must be a valid directory
if [ ! -d $2 ]; then
echo "Save directory (parameter 2) is invalid"
show_usage
fi
database=$1
save_dir=$2
file_name="${database}-`date +%Y%m%d%H%M`.mongo.gz"
mkdir -p ${save_dir}/mongo
mongodump -h 00.00.00.00 -u your_username -p 'your_password' -o ${save_dir}/mongo
if [ -e ${save_dir}/mongo ]; then
echo "Local backup created"
tar -cvjf ${file_name} ${save_dir}/mongo
S3BUCKET="clab_backups"
/usr/bin/s3cmd --config /path/to/.s3cfg put ${file_name} s3://${S3BUCKET}/${file_name}
sleep 5
rm ${file_name}
rm -rf ${save_dir}/mongo
echo "Updated to s3"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment