# 把 test 数据库下面的 video 集合 备份 到 /data/mongo/video
mongodump -h 127.0.0.1:27017 -u xxx -p xxx -d test -c video -o /data/mongo/video
# 导入
mongorestore -h 127.0.0.1:27017 -u xxx-p xxx --drop /data/mongo/video
来源:CSDN
作者:Im灬大神
链接:https://blog.csdn.net/qq_43338182/article/details/103634193