Monngod db
我们每天都会根据ERROR_LOG_12012016
等日期创建数据库。
我们现在每天备份,当我把dump完成所有附加的数据库这里我们需要昨天的数据库只有这样做才能帮助这个
此致 巴斯卡尔
答案 0 :(得分:0)
我认为你正在寻找这个
mongodump --collection myCollection --db test
根据您的评论,您应该每天运行cron。 尝试在shell脚本中执行命令。MongoDump with timestamp
答案 1 :(得分:0)
您可以使用mongoexport
mongoexport -d database_name -c collection_name -o output_file.json
要使其自动运行,请按照以下步骤进行操作
step1:编写shell脚本,你的shell脚本如下,
#!/bin/bash
# My first script
mongoexport -d database_name -c collection_name -o output_file.json
第二步:按名称文件名
保存文件第3步:尝试按命令运行文件 ./ filename
第4步:将此命令添加到crontab