Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过 google colab 使用我的本地 neo4j 服务器。
我正在使用 ngrok 使用命令公开端口: ngrok http 7687。它给出了这样的东西:
ngrok http 7687
ngrok 工作正常。但是当尝试使用 colab 连接时,我收到以下错误:
不知何故,port 7687默认情况下正在使用,但对于这种特殊情况,我不需要任何端口。
port 7687
任何帮助深表感谢。谢谢
7687上的bolt端口不在http上,而是在TCP上。
bolt
您可以ngrok tcp 7687改用,您需要在 ngrok 上开设一个帐户才能使用 tcp 转发功能。
ngrok tcp 7687
此外,在 neo4j 连接配置中,您需要在第一个 URL 处将 tcp:// 语法替换为 bolt://,这样 neo4j 才能识别连接。就像这样:
bolt://tcp.ngrok.io:3000