如何使用 neo4j 浏览器通过 bolt 连接到 neo4j 嵌入式实例?

How do I connect to a neo4j embedded instance via bolt using the neo4j browser?

我已按照 section 4.14 of the documentation 中的说明进行操作,但我不知道如何将 neo4j 浏览器连接到我的嵌入式实例。服务器 运行ning 后,我通过 neo4j 桌面和 运行 :server connect 打开浏览器。这会提示我输入主机、用户名和密码。我不确定为这些值设置什么。我为主机尝试了localhostlocalhost:7687bolt://localhost:7687的许多组合,并且我尝试了username/password组合,例如neo4j/neo4j、neo4j作为一个带有空白密码的用户名,以及一个空白的用户名和密码。我从来没有为数据库设置用户名和密码。无论我尝试什么,我总是会收到以下错误:

ServiceUnavailable: WebSocket connection failure. Due to security constraints in your web browser, the reason for the failure is not available to this Neo4j Driver. Please use your browsers development console to determine the root cause of the failure. Common reasons include the database being unavailable, using the wrong connection URL or temporary network problems. If you have enabled encryption, ensure your browser is configured to trust the certificate Neo4j is configured to use. WebSocket `readyState` is: 3

主机、用户名和密码的正确值是多少?

原来 localhost:7687bolt://localhost:7687 都可以,username/password 都可以为空。有趣的是,我用 maven 构建我的 uber-jar 的方式似乎使螺栓依赖不可用。我切换到 buck 螺栓连接器似乎启动了。