mongodb 数据备份还原 带用户名密码认证 auth mongodump

当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 集合名词

mongodb 数据备份还原 带用户名密码认证 auth mongodump_第1张图片
image.png

你可能感兴趣的:(mongodb 数据备份还原 带用户名密码认证 auth mongodump)