Neo4J与Py2neo:未经授权的错误HTTPS

时间:2017-05-04 22:13:30

标签: python database docker neo4j py2neo

我在 Docker 容器上运行 Neo4J ,其中我已将内部容器端口7473和7687映射到它们各自的主机端口7473和7687,7474,但是没有映射。

关于网络的Neo4J服务器配置。

# Bolt connector dbms.connector.bolt.enabled=true
#dbms.connector.bolt.tls_level=OPTIONAL 
dbms.connector.bolt.listen_address=0.0.0.0:7687

# HTTP Connector. There must be exactly one HTTP connector. 
dbms.connector.http.enabled=true 
dbms.connector.http.listen_address=0.0.0.0:7474

# HTTPS Connector. There can be zero or one HTTPS connectors. 
dbms.connector.https.enabled=true 
dbms.connector.https.listen_address=0.0.0.0:7473

我可以通过浏览器登录Neo4J的webclient并更改默认密码。

关于Python代码,这里是我创建客户端的行。

self.client = py2neo.Graph(host    =ip_address,
                           username=username,
                           password=password,
                           secure  =use_secure,
                           bolt    =use_bolt)

我一执行这样的查询。

node = Node("FooBar", foo="bar")
self.client.create(node)

我收到以下未经授权的例外。

py2neo.database.status.Unauthorized: https://localhost:7473/db/data/

有关为何会发生这种情况的任何想法吗?

1 个答案:

答案 0 :(得分:0)

解决方案是调用库提供的单独身份验证方法,如下所示:

auth_port = str(self._PORT_HTTPS if use_secure else self._PORT_HTTP)
py2neo.authenticate(":".join([ip_address, auth_port]), username, password)

我花了一些时间来讨论这个问题,因为起初,我认为身份验证是在构造函数中自动完成的,然后我无法运行身份验证方法,因为我使用了bolt端口。