Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有带有 mmapv1 引擎的 mongodb 3.0.7。现在我想升级到有线触发器。我的操作系统 (OS) 是 Windows server R2 2012。谁能提供升级 Mongo DB Engine 的详细步骤?
提前致谢 :-)
如果您不使用复制。
1 - 您需要备份您的数据库:
mongodump -d db_name YOUR_BACKUP_LOCATION
mongodump 文档
2 - 停止 MongoDB 服务
3 - 更改配置
storage: dbPath: "YOUR_LOCATION" engine: wiredTiger
使用新位置。如果出现问题,回去会更容易。
4 - 启动 MongoDB 服务
5 - 从备份中恢复数据库
mongorestore YOUR_BACKUP_LOCATION
mongorestore 文档
完毕。