mongorestore Failed: no reachable servers

后端 未结 12 1788
天涯浪人
天涯浪人 2020-12-15 03:06

I tried to restore mongo from dump but failed:

mongorestore --port 27133 dump
2015-05-07T09:39:11.760+0300    Failed: no reachable servers

12条回答
  •  天命终不由人
    2020-12-15 03:42

    I struggled with the same issue while using MongoDB Atlas for a few hours.

    I tried to follow the offical guides like Seed with mongorestore and Load File with mongoimport but received the same no reachable servers error.

    I tried to change the command arguments over and over - nothing changed.

    But then I navigated inside my cluster to the "Command Line Tools" tab and saw the exact command I should run for mongorestore, mongodump, mongoimport,mongoexport etc':

    Adding as inline the full command:

    mongorestore --host 
    -shard-0/
    -shard-00-00-obe3i.mongodb.net:27017,
    -shard-00-01-obe3i.mongodb.net:27017,
    -shard-00-02-obe3i.mongodb.net:27017 
    --ssl 
    --username  
    --password  
    --authenticationDatabase admin 
    

    The mongorestore comand can be replaced with mongodump,mongoimport,mongoexport etc'.

    (*) Prefer copying the command directly from dashboard because the DNS of the replica-sets might change.

    (**) MongoDB shell version v4.2.5.

提交回复
热议问题