如何启用 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 的远程连接。
此页面有帮助吗?