By Panos RV
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!
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
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.