MongoDB的导入导出使用的是类似JSON格式,占用空间较大。

从MongoDB导出Collection

# mongoexport -d lmiot -c locations -o lmiot-$(date '+%Y%m%d').dat
connected to: 127.0.0.1
exported 16165 records

导入Collection到MongoDB

$ mongoimport -d lmiot -c locations lmiot-20130930-132807.dat
connected to: 127.0.0.1
Mon Sep 30 13:31:02.377 check 9 16165
Mon Sep 30 13:31:02.498 imported 16165 objects

备份数据库

$ mongodump -d lmiot -o mongobak-20131114-1345

恢复数据库

$ mongorestore -d lmiot mongobak-20131114-1345/lmiot/

[ 编辑 | 历史 ]
最近由“jilili”在“2014-11-16 04:37:44”修改