Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mushfiq
Created August 8, 2013 16:57
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save mushfiq/6186457 to your computer and use it in GitHub Desktop.
Save mushfiq/6186457 to your computer and use it in GitHub Desktop.
#!/bin/sh
MONGODB_SHELL='mongo'
DUMP_UTILITY='mongodump'
#SET the bd name which one you want to backup
DB_NAME=''
#SET server path where you want to save the file
CLOUD_PATH=''
#SET your user name
SERVER_USER=''
#SET your host name or IP of the server
HOST_NAME=''
date_now=`date +%Y_%m_%d_%H_%M_%S`
dir_name='db_backup_'${date_now}
file_name='db_backup_'${date_now}'.bz2'
current_year=`date +%Y`
log() {
echo $1
}
do_cleanup(){
rm -rf 'db_backup_'${current_year}*
log 'cleaning up....'
}
do_backup(){
log 'snapshotting the db and creating archive' && \
${MONGODB_SHELL} admin fsync_lock.js && \
log 'db locked and creating backup'
${DUMP_UTILITY} -d ${DB_NAME} -o ${dir_name} && tar -jcf $file_name ${dir_name} && \
${MONGODB_SHELL} admin fsync_unlock.js && \
log 'data backd up and created snapshot'
}
save_in_cloud(){
log 'saving backup to another server...'
scp ${file_name} ${SERVER_USER}@${HOST_NAME}:${CLOUD_PATH}
log 'saved scuccessfully'
}
do_backup && save_in_cloud && do_cleanup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment