MongoDB的操作

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的操作)