mongodb備份腳本
阿新 • • 發佈:2018-04-27
mongodb備份腳本#!/bin/bash
sourcepath=‘/mnt/mongodb/bin‘
targetpath=‘/mnt/mongodb/back‘ #備份目錄
nowtime=$(date +%Y%m%d) else
echo "back failure!"
fi
} fi
execute
echo "============== back end ${nowtime} =============="
sourcepath=‘/mnt/mongodb/bin‘
targetpath=‘/mnt/mongodb/back‘ #備份目錄
nowtime=$(date +%Y%m%d)
start()
{
${sourcepath}/mongodump --host 127.0.0.1 --port 20011 -uadmin -p‘密碼‘ --authenticationDatabase admin --out ${targetpath}/${nowtime}
}
execute()
{
start
if [ $? -eq 0 ]
then
echo "back successfully!"
echo "back failure!"
fi
}
if [ ! -d "${targetpath}/${nowtime}/" ]
then
mkdir ${targetpath}/${nowtime}
fi
execute
echo "============== back end ${nowtime} =============="
if [ -d "${targetpath}/${nowtime}/" ]
then
cd /mnt/mongodb/back
tar -cvzf ${targetpath}/${nowtime}.tar.gz ${nowtime}
execute
echo "============== back end ${nowtime} =============="
if [ -d "${targetpath}/${nowtime}/" ]
then
rm -rf /mnt/mongodb/back/"${nowtime}"
fi
find /mnt/mongodb/back/ -type f -name "*.tar.gz" -mtime +6| xargs rm -fr {}; #只保留6天的備份文件。
mongodb備份腳本