mongodb备份脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mongodb备份脚本相关的知识,希望对你有一定的参考价值。

#!/bin/bash
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!"
else
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}
fi
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备份脚本的主要内容,如果未能解决你的问题,请参考以下文章

mongodb备份脚本

mongodb第六篇文章~关于mongodb的自动备份脚本

mongodb数据备份脚本和日志切割脚本

mongodb 备份脚本

MongoDB-备份和恢复

MongoDB增量备份