MongoDB 5.0 bin 目录下没有备份恢复 mongodump、mongorestore等工具

4.*版本好像都有,5.*默认没了

去官网单独下载  https://www.mongodb.com/try/download/database-tools

备份恢复脚本

备份 cargoStore 数据到本目录

@echo off
path = %path%;"C:Program FilesMongoDBServer5.0in"
@REM cd 命令进入找不到 mongodump.exe 
@REM cd "C:Program FilesMongoDBServer5.0in"
start mongodump.exe -h 127.0.0.1:27017 -d cargoStore -o "./"
exit

恢复 ./cargoStore 数据为 cargoStore 到数据库

@echo off
path = %path%;"C:Program FilesMongoDBServer5.0in"
start mongorestore -h 127.0.0.1:27017 -d cargoStore "./cargoStore"
exit
原文地址:https://www.cnblogs.com/jiayouba/p/15533162.html