mongorestore
all
Utility to import a collection or database from a binary dump into a MongoDB instance.
More info →Examples (4)
Import a BSON data dump from a directory to a MongoDB database
mongorestore --db database_name path/to/directoryImport a BSON data dump from a directory to a given database in a MongoDB server host, running at a given port, with user authentication (user will be prompted for password)
mongorestore --host database_host:port --db database_name --username username path/to/directory --passwordImport a collection from a BSON file to a MongoDB database
mongorestore --db database_name path/to/fileImport a collection from a BSON file to a given database in a MongoDB server host, running at a given port, with user authentication (user will be prompted for password)
mongorestore --host database_host:port --db database_name --username username path/to/file --passwordmade by @shridhargupta | data from tldr-pages