You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Michael Kennedy 4997e05eab
Add authenticated message.
5 years ago
..
README.md Add authenticated message. 5 years ago
bookstore.zip Here is some data we’ll use throughout this course. 8 years ago
dealership_db_250k.zip Save the big dealership db 8 years ago

README.md

Directions to restore this data into MongoDB

To restore any of these databases to MongoDB, you'll need to uncompress them and then run this command:

mongorestore --drop --db DATABASE /path/to/unziped/dir

If you are using an authenticated connection on another server, this more verbose version is required:

mongorestore -u admin -p <mypassword> --authenticationDatabase 'admin' --ssl --host <my_hostname> --sslCAFile mongod.crt --sslPEMKeyFile mongod.pem --drop --db DATABASE /path/to/unziped/dir

Note this references this two MongoDB certifications for connecting. You can altermantively use the --sslAllowInvalidCertificates flag to ignore them.