Skip to content

Instantly share code, notes, and snippets.

@ziyoung
Created April 11, 2019 09:05
Show Gist options
  • Save ziyoung/b37a86cfe16b096d1b050dd0f7c9018e to your computer and use it in GitHub Desktop.
Save ziyoung/b37a86cfe16b096d1b050dd0f7c9018e to your computer and use it in GitHub Desktop.
mongo 数据导出以及导入

数据导出

导出本地数据最方便,指定数据库以及导出的路径即可。

mongodump --db some-database --out som-directory

导出远端数据的,指定 uri。

mongodump --uri mongodb://username:password@some-url/database --db some-database --out som-directory

数据导入

导入数据比较方便,指定导入的数据库即可。

mongorestore --db databse directory
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment