美文网首页
MongoDB的操作

MongoDB的操作

作者: 不会撒娇的猫咪 | 来源:发表于2018-12-11 10:19 被阅读1次

    MongoDB的安装

    1. 从MongoDB的官网下载社区版的mongodb-win32-x86_64-2008plus-ssl-4.0.4-signed.msi
    2. 双击mongodb-win32-x86_64-2008plus-ssl-4.0.4-signed.msi,安装mongodb应用程序
    3. 将mongodb的安装目录下的bin目录的路径配置到环境变量中

    将MongoDB安装为MongoDB服务

    mongod.exe --config "D:\mongodb\etc\mongodb.config" --logpath "D:\mongodb\logs\mongodb.log" --dbpath "D:\mongodb\data" --serviceName "MongoDB" --install

    MongoDB的压缩备份

    mongodump -h 127.0.0.1:27017 -u user -p password --authenticationDatabase admin --gzip -d database -c collectionName -o outputPath

    MongoDB还原

    mongorestore.exe -h 127.0.0.1:27017 -u user -p password --authenticationDatabase admin -d database --gzip inputPath

    相关文章

      网友评论

          本文标题:MongoDB的操作

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