【问题标题】:No primary detected for set [Mongo shell]未检测到集合 [Mongo shell] 的主节点
【发布时间】:2017-10-20 15:14:44
【问题描述】:

我当前的 MongoDb 版本是 3.2.7 我正在尝试用这个连接到我的数据库

"mongo mongodb://meanbeta-shard-00-00-sshqm.mongodb.net:27017,meanbeta-shard-00-01-sshqm.mongodb.net:27017,meanbeta-shard-00-02-sshqm.mongodb.net:27017/test?replicaSet=MEANbeta-shard-0" --authenticationDatabase admin --ssl --username xxxx --password xxxxx

昨天我能够通过 mongo shell 连接,但今天它给了我错误,但我仍然能够使用 Compass 应用程序连接:

2017-10-20T20:34:04.682+0530 I NETWORK [thread1] Starting new replica set monitor for MEANbeta-shard-0/meanbeta-shard-00-00-sshqm.mongodb.net:27017,meanbeta-shard-00-01-sshqm.mongodb.net:27017,meanbeta-shard-00-02-sshqm.mongodb.net:27017 2017-10-20T20:34:04.682+0530 I NETWORK [ReplicaSetMonitorWatcher] starting 2017-10-20T20:34:07.708+0530 W NETWORK [thread1] No primary detected for set MEANbeta-shard-0 2017-10-20T20:34:11.095+0530 W NETWORK [thread1] No primary detected for set MEANbeta-shard-0 2017-10-20T20:34:14.516+0530 W NETWORK [thread1] No primary detected for set MEANbeta-shard-0 2017-10-20T20:34:16.637+0530 W NETWORK [ReplicaSetMonitorWatcher] No primary detected for set MEANbeta-shard-0 2017-10-20T20:34:20.056+0530 W NETWORK [thread1] No primary detected for set MEANbeta-shard-0 2017-10-20T20:34:20.056+0530 E QUERY [thread1] Error: connect failed to replica set MEANbeta-shard-0/meanbeta-shard-00-00-sshqm.mongodb.net:27017,meanbeta-shard-00-01-sshqm.mongodb.net:27017,meanbeta-shard-00-02-sshqm.mongodb.net:27017 :

我是 MongoDB 及其副本集概念的新手,请帮助我。

谢谢

【问题讨论】:

  • 更新Mongo Shell后突然就可以了

标签: mongodb shell mongo-shell


【解决方案1】:

不要从 apt-get 安装 mongo shell,因为它安装的是旧版本。您需要 MongoDB shell 版本 v3.4.10 或更高版本才能工作。

在从 mongo 网站上的 shell 对话框中连接到集群中显示的链接安装较新版本之前,我也遇到了同样的问题。

【讨论】:

  • 是的,它对我有用。不要使用 apt 命令行来安装。
  • 3.4.10 对我不起作用,但 3.6.21 对我有用
【解决方案2】:

谢谢@Natesh,

echo 'http://dl-cdn.alpinelinux.org/alpine/v3.8/main' >> /etc/apk/repositories && \
echo 'http://dl-cdn.alpinelinux.org/alpine/v3.8/community' >> /etc/apk/repositories && \
apk update && \
apk add mongodb=3.6.7-r0 && \
mongo --version 

为我工作。

【讨论】:

    猜你喜欢
    • 2019-03-27
    • 1970-01-01
    • 2019-09-22
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多