Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 474 Bytes

File metadata and controls

15 lines (10 loc) · 474 Bytes

Message Board Server

Build Status

Mongodb backup & restore

# <https://docs.mongodb.com/manual/tutorial/backup-and-restore-tools/#binary-bson-dumps>

# backup
mongodump --port 27017 --host 127.0.0.1 --collection tweets --db MessageBoardDev --out "C:\data\backup"

# restore
mongorestore --port 27017 --host 127.0.0.1 "C:\data\backup"