美文网首页
mongodb 数据备份还原 带用户名密码认证 auth mon

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

作者: 时代小召唤 | 来源:发表于2017-07-10 14:43 被阅读0次

    当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

    相关文章

      网友评论

          本文标题:mongodb 数据备份还原 带用户名密码认证 auth mon

          本文链接:https://www.haomeiwen.com/subject/wqoyhxtx.html