mongodb 备份与迁移

从一台服务器迁移到另一台:

数据导出:
./bin/mongoexport -h 127.0.0.1 -u root -p ****** --port 27017 --authenticationDatabase admin -d databaseName -c collectionName -o ./back/collectionName.dat

数据导入:
./bin/mongoimport -h 127.0.0.1 -u root -p ****** --port 27017 --authenticationDatabase admin -d databaseName -c collectionName ./back/collectionName.dat

 

相关文章

文章浏览阅读552次。com.mongodb.MongoQueryException: Quer...
文章浏览阅读635次,点赞9次,收藏8次。MongoDB 是一种 NoSQ...
文章浏览阅读2.1k次。和。_mongodb 日期类型
文章浏览阅读1.7k次。Scalestack等客户期待使用MongoDB Atla...
文章浏览阅读970次。SpringBoot整合中间件mongodb、ES_sprin...
文章浏览阅读673次。MongoDB 简介_尚医通sql