当mongodb 数据库打开了 auth认证 以后 就不能直接使用 dump 而需要提供对应的账号密码 如下
mongodump -h localhost:27017 -d test -u test -p testpwd -o D:\dump
-h 地址
-d 数据库名称
-u 用户名
-p 密码
-o 输出地址
--authenticationDatabase admin 验证账户的数据库
恢复数据库
mongorestore -h localhost:27017 -d test -c order --dir d:\dump\test\test.bson -u Aibol -p Secret01!
-c 集合名词
image.png
网友评论