如何还原mongodb并替换现有文件?

时间:2019-05-14 17:36:36

标签: mongodb backup mongodump mongorestore

我正在备份特定集合的数据库迁移,但是我仍然需要一些东西来帮助我替换翻转数据库中可能存在的数据,这是我正在使用的查询:

file="listOfBackupFiles.txt"
while IFS= read -r line
do
    # display $line or do somthing with $line
    mongorestore --archive="$line" --gzip
done <"$file"

0 个答案:

没有答案