我想同时运行gremlin-server和neo4j。
所以我在我的机器上运行neo4j docker镜像,并尝试用博尔特协议连接它。
有人能帮我在gremlin-server中配置.yaml/.property文件吗?
使用的版本| gremlin-server 3.4.0 & neo4j 3.2.3
发布于 2019-05-03 19:30:59
可以在here中找到Graph实例属性文件的配置选项。我不确定此提供程序的最低要求是什么,但从TinkerPop的角度来看,您至少需要使用gremlin.graph指定Graph实例,然后包括连接所需的任何其他配置:
Graph
gremlin.graph
gremlin.graph=com.steelbridgelabs.oss.neo4j.structure.Neo4jGraphFactory neo4j.hostname=... neo4j.port=...
然后,在Gremlin Server yaml file中,只需引用上述属性文件的路径即可。
graphs: { graph: conf/bolt.properties}
https://stackoverflow.com/questions/55948449
相似问题