如何使用gremlin-server中的bolt协议连接neo4j?

时间:2019-05-02 08:29:14

标签: neo4j gremlin-server

我想同时运行gremlin-server和neo4j。

因此,我在计算机上运行neo4j docker映像,并尝试将其与BOLT协议连接。

有人可以为此在gremlin服务器中配置.yaml / .property文件吗?

使用的版本| gremlin服务器3.4.0和neo4j 3.2.3

1 个答案:

答案 0 :(得分:0)

Graph实例属性文件的配置选项可以在here中找到。我不确定此提供程序的最低要求是什么,但是从TinkerPop的角度来看,您至少需要用Graph指定gremlin.graph实例,然后包括需要连接的任何其他配置:< / p>

gremlin.graph=com.steelbridgelabs.oss.neo4j.structure.Neo4jGraphFactory
neo4j.hostname=...
neo4j.port=...

然后在Gremlin服务器yaml file中,您只需引用上述属性文件的路径即可。

graphs: {
  graph: conf/bolt.properties}