Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 266 Bytes

mongo.md

File metadata and controls

14 lines (10 loc) · 266 Bytes

MongoDB Cheatsheet

Download/Upload all the collections in a database

1. Download

```bash
mongodump -d <database_name> -o <directory_backup>
```

1. Upload
```bash
mongorestore -d <database_name> <directory_backup>
```