mongdb数据迁移导出与导入

导出:

mongoexport --host localhost --port 27017 
--username un1 --password pwd1
--db db1 --collection col1
--out /data/col1.json
-q '{cls:{$in:['cc','out','los']},geom:{$geoIntersects:{$geometry:{"type":"Polygon","coordinates":[[[ 1, 1],[ 1, 2],[ 2, 2],[ 2, 1],[ 1, 1 ]]]}}}}'

导入:

mongoimport -d db1-c col1 col1.json

 

posted @ 2018-03-20 17:08  sulerzh  阅读(270)  评论(0编辑  收藏  举报