1

我正在尝试设置 Mongo Db Bi 连接器,以便对我的 MongoDb Atlas Cluster 进行一些分析。我按照这里的说明进行操作:https ://docs.mongodb.com/bi-connector/master/tutorial/connecting-to-atlas/

但是,当尝试按照指定的运行以下(使用我的信息)生成 DRDL 文件时:

mongodrdl --host <domain0>.mongodb.net:27017,<domain1>.mongodb.net:27017,... -u <username> -p <password> --ssl --authenticationDatabase=admin -d <database>

我收到以下错误:

dyld: Library not loaded: /usr/local/opt/openssl/lib/libssl.1.0.0.dylib
Referenced from: /usr/local/bin/mongodrdl

  Reason: image not found

Abort trap: 6

我不确定这是什么原因或它意味着什么。

任何帮助,将不胜感激。

4

1 回答 1

1

MongoDB Atlas uses TLS/SSL to encrypt connections and enforces authentication by default.

MongoDB Connector for BI supports TLS/SSL and requires SSL library to be installed. See also the Installation step for installing OpenSSL on the manual

Assuming you're using OSX, then you can run the following:

sudo brew update && sudo brew install openssl
于 2017-03-28T07:04:51.130 回答