mongodump/mongoexportのやりかた

Dec 14, 2018 13:11 · 52 words · 1 minute read

mongoexport ってのでjson形式で吐き出せる (jqを使って作業がしやすい)

mongoexport \
    --host=aws-singapore-free-shard-00-01-xxxx.mongodb.net \
    --port=27017 \
    --username=app \
    --authenticationDatabase=admin \
    --password=xxxxxx \
    --ssl \
    --db=abcd \
    --collection=profiles \
    --out /tmp/profiles.json
tweet Share