Report this

What is the reason for this report?

How to export/restore in mongodb?

Posted on September 1, 2015

Hello! I have a local mongo db and I want to transfer it into my ubuntu machine. So far i have exported the local db issuing the command below:

mongoexport --db local_db --collection myCollection --out myCollection.json

and the json file was created. Now i log in into my machine using putty and try

mongoimport --db cloud_db --collection myCloudCollection --file myCollection.json

and i get the following error:

Failed: error connecting to db server: no reachable servers 2015-09-01T13:10:30.080-0400 imported 0 documents Failed: error connecting to db server: no reachable serversmongoimport

i try to restart mongo service sudo service mongod restart but i get the same error.

any help? what Am i doing wrong?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

By default, mongoimport will attempt to connect to a MongoDB instance on localhost port 27017. If yours is running on a different port, you will also need to provide --host <hostname>:<port> when using the command.

You can check what port your instance is using by running:

netstat -plunt | grep mongo

See here for the full documentation for mongoimport

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.