Pense bête pour mongodb - les fondamentaux d'importation / exportation dans une base Mongo

https://www.youtube.com/watch?v=LflRYX_y22c

 
De même pour restorer un fichier bson/

It's very simple to import a .bson file:

mongorestore -d db_name -c collection_name /path/file.bson

Incase only for a single collection.Try this:

mongorestore --drop -d db_name -c collection_name /path/file.bson

For restoring the complete folder exported by mongodump:

mongorestore -d db_name /path/