websocket JanusGraph的Gremlin-Console在哪里找到了它的Tinkerpop服务器的“conf/remote.yaml”?

wi3ka0sx  于 2023-05-07  发布在  其他
关注(0)|答案(1)|浏览(156)

问题

JanusGraph [Docker-container]Gremlin-Console从哪里得到它的conf/remote.yaml
我不确定是否连接到相同或正确的WebSocketJanusGraph's Gremlin-Server
我如何知道我正在使用代码连接到同一个Gremlin-Server

[o.a.t.g.d.ConnectionPool.gremlin-driver-host-scheduler-1] ::    Opening connection pool on Host{address=localhost/127.0.0.1:8182, hostUri=ws://localhost:8182/gremlin}
[o.a.t.g.d.Connection.gremlin-driver-conn-scheduler-1] ::    Created new connection for ws://localhost:8182/gremlin

复制

步骤

1.安装Docker
1.启动JanusGraph [Docker-container]
docker run -d -p 8182:8182 janusgraph/janusgraph
1.结果
1.预期值(1或倍数)

  1. Gremlin Folder [For Gremlin-Console and/or Gremlin-Server]
  2. Gremlin Configuration File(s) [ remote.yaml in conf/ or anywhere]
    1.要在日志中打印的remote.yaml Configuration-File目录
    1.事实上
  3. No Gremlin Folder Found
    1.找不到Gremlin配置文件
  4. 404 Not Found whereis (Linux Command)未返回任何位置
    1.问题
  5. localhost:8182/gremlin是Gremlin-Server的默认值吗?
    1.或者它是Gremlin或JanusGraph的默认Gremlin GraphDB名称?
    1.这个remote.yaml是从哪里来的?
    1.为什么会有一个单独的gremlin-server.yaml?是一样的吗?
    1.关于JanusGraph的tinkerpop.server的更详细的文档在哪里?

更新

更新1

谢谢你告诉我remote.yaml的位置@HadoopMarc!
未来读者:/opt/janusgraph/conf/remote.yaml在此记录的时间。

agxfikkp

agxfikkp1#

没有“小精灵文件夹”的概念。JanusGraph包括TinkerPop/gremlin,JanusGraph文件夹是gremlin文件夹。

docker exec -it aceffdee582e ls conf
hadoop-graph                    jvm-8.options
janusgraph-berkeleyje-es-server.properties  log4j-console.properties
janusgraph-berkeleyje-lucene-server.properties  log4j-server.properties
janusgraph-berkeleyje-server.properties     logback.xml
janusgraph-cql-es-server.properties     remote-graph-binary.yaml
janusgraph-cql-server.properties        remote-graph.properties
janusgraph-inmemory-server.properties       remote-objects.yaml
janusgraph-server.yaml              remote.yaml
jvm-11.options                  solr

相关问题