将 mongocxx 连接到 mongodb 服务器时出错:SSL 支持不可用

Error connecting mongocxx to mongodb server: SSL support not available

使用 mongocxx 3.3 或 mongo cxx 3.4 稳定版,我正在尝试连接到 mongo atlas 实例。这是我的基本代码:

#include <mongocxx/client.hpp>
#include <mongocxx/instance.hpp>

mongocxx::instance inst{};    
mongocxx::uri uri = mongocxx::uri("mongodb+srv://...");
mongocxx::client conn(uri);
mongocxx::database db = conn["test"];

而且我已经测试了几种替代方案,例如使用客户端选项(如此处解释:http://mongocxx.org/mongocxx-v3/configuration/), and also setting a pem file path like explained here:

我总是出现以下错误:

terminate called after throwing an instance of 'mongocxx::v_noabi::exception'
what():  SSL support not available
Aborted (core dumped)

您收到此错误是因为 C 和 C++ driver 中的一个或两个未配置 SSL 支持。 C++ driver 构建默认支持 SSL(寻找 MONGOCXX_ENABLE_SSL CMake 选项)。所以最可能的解释是底层的 C driver 是在没有 SSL 的情况下构建的,第二个最可能的解释是 C driver 确实内置了 SSL 支持,但是当构建 C++ driver。您可以通过在 Cdriverheaders 中查找 MONGOC_ENABLE_SSL 的值来验证 Cdriver 的状态。如果启用,它应该如下所示:

$ find /usr/local/Cellar/mongo-c-driver/1.14.0/include -type f -name "*.h" | xargs grep 'MONGOC_ENABLE_SSL '
/usr/local/Cellar/mongo-c-driver/1.14.0/include/libmongoc-1.0/mongoc/mongoc-config.h: * MONGOC_ENABLE_SSL is set from configure to determine if we are
/usr/local/Cellar/mongo-c-driver/1.14.0/include/libmongoc-1.0/mongoc/mongoc-config.h:#define MONGOC_ENABLE_SSL 1
/usr/local/Cellar/mongo-c-driver/1.14.0/include/libmongoc-1.0/mongoc/mongoc-config.h:#if MONGOC_ENABLE_SSL != 1

当然,您应该将上面包含目录的路径替换为您安装 C driver 的实际位置。

如果您在其中看到 #define MONGOC_ENABLE_SSL 1 以外的任何内容,那么您的 C driver 没有启用 SSL 支持,您需要重建它才能拥有它。