如何解决此 Memgraph SSL 连接错误?
How do I solve this Memgraph SSL connection error?
我正在尝试 运行 memgraph
1.2.0 - 使用 docker
并收到以下 SSL 连接错误 -
ERROR services/memgraph/tests/collapse_test.py::test_incorrect_pseudo_node - neobolt.exceptions.SecurityError: Failed to establish secure connection to '[SSL: WRONG_VERSION_NUMBER]
我该如何解决这个问题?
谢谢!
这似乎是 Memgraph 未配置为使用 SSL,而客户端正在尝试建立 SSL 连接。
如果是这种情况,并且使用了 Neo4j 的 Python 驱动程序,客户端应配置为禁用加密:
from neo4j import GraphDatabase, basic_auth
driver = GraphDatabase.driver("bolt://localhost:7687",
auth=basic_auth("", ""),
encrypted=False)
您使用的是哪个版本的 Neo4j Python 驱动程序?较新版本的驱动程序 (> 4.0) 应该默认禁用加密。
我正在尝试 运行 memgraph
1.2.0 - 使用 docker
并收到以下 SSL 连接错误 -
ERROR services/memgraph/tests/collapse_test.py::test_incorrect_pseudo_node - neobolt.exceptions.SecurityError: Failed to establish secure connection to '[SSL: WRONG_VERSION_NUMBER]
我该如何解决这个问题?
谢谢!
这似乎是 Memgraph 未配置为使用 SSL,而客户端正在尝试建立 SSL 连接。
如果是这种情况,并且使用了 Neo4j 的 Python 驱动程序,客户端应配置为禁用加密:
from neo4j import GraphDatabase, basic_auth
driver = GraphDatabase.driver("bolt://localhost:7687",
auth=basic_auth("", ""),
encrypted=False)
您使用的是哪个版本的 Neo4j Python 驱动程序?较新版本的驱动程序 (> 4.0) 应该默认禁用加密。