MongoDB 資料遷移 備份 匯入(自用)

右介發表於2018-08-14

MongoDB bin資料夾下

 

備份:mongodump -h IP:PORT -d 庫名 -c 集合名 -o 儲存路徑


恢復:mongorestore -h IP:PORT -d 庫名 -c 集合名 儲存路徑\檔名.bson

當多個bson檔案需要恢復到同一個資料集合時,依次對bson檔案做資料恢復操作即可,不會覆蓋。

 

 

json檔案匯入:mongoimport  -h IP:PORT -d 庫名 -c 集合名 儲存路徑\檔名.json

當json檔案較大時,速度較慢,可在命令列結尾加:--numInsertionWorkers 10(數字自行調整)

相關文章