MongoDB数据库迁移
1、下载 Download MongoDB Command Line Database Tools | MongoDB
2、安装后配置安装目录的bin到环境变量里
3、运行备份
mongodump --db 数据库名称 --out 备份输出路径位置 -u 用户名 -p 密码 --authenticationDatabase admin
4、迁移
mongorestore --db 目标数据库名称 备份的文件路径 -u 用户名 -p 密码 --authenticationDatabase admin