如何在 Neo4j 3.0.x 中启用远程 HTTPS 访问
在 3.0.x 中,要使远程客户端能够连接到启用了 HTTPS 的浏览器,需要将 $NEO4J_HOME/conf/neo4j.conf
中的以下参数从默认值
#dbms.connector.https.address=localhost:7473
更改为
dbms.connector.https.address=0.0.0.0:7473
将 localhost:7473
更改为 0.0.0.0:7473
将允许远程连接到 https://<Neo4j_Host_IP>:7473
此页面是否有帮助?