我试图将 Docker 上的 BI 连接器实例连接到我在 Mongo Atlas 中的数据库

时间:2021-06-14 13:01:59

标签: mongodb docker mongodb-biconnector

我正在尝试不同的方式来连接到 Mongo Atlas,但一直没有成功。我可能忘记了一些东西,但文档不是很详细。也许我需要付费才能拥有该功能? 目前这是我的 mongosqld.conf 文件:

systemLog:
  path: '/logs/mongosqld.log'
  verbosity: 10
mongodb:
  net:
    uri: 'cluster0-shard-00-02.abcde.mongodb.net:27017/?replicaSet=atlas-24535-shard-0&ssl=true&w=majority&retryWrites=true'
    auth:
      username: "user"
      password: "password"
      mechanism: "SCRAM-SHA-1"
      source: "dbName"
net:
  bindIp: localhost
  port: 3307

security:
  enabled: true

而且我不断收到此错误:

SCHEMA [manager] error initializing schema: unable to execute command: server selection error: context deadline exceeded, current topology: { Type: ReplicaSetNoPrimary, Servers: [{ Addr: cluster0-shard-00-02.abcde.mongodb.net:27017, Type: Unknown, Average RTT: 0, Last error: connection() error occured during connection handshake: OCSP verification failed: no OCSP cache provided }, ] }

有什么线索或者你能指出我正确的方向吗?

我的 BI 连接器版本是 2.14.3 并且是 dockerized。

0 个答案:

没有答案
相关问题