安装&配置gremlin-neo4j Ubuntu

时间:2018-04-19 06:37:22

标签: neo4j gremlin tinkerpop3 gremlin-server

我在我的Ubuntu中安装了neo4j 现在我需要将neo4j图形数据库配置为gremlin控制台。 我需要gremlin的干净安装程序,以及对Neo4j GDB的配置。 任何人都可以与我分享指示。

1 个答案:

答案 0 :(得分:1)

  1. 按照the documentation here
  2. 中的说明配置Grape

    如果尚未存在,请创建新文件~/.groovy/grapeConfig.xml

    添加以下内容:

    <ivysettings>
      <settings defaultResolver="downloadGrapes"/>
      <resolvers>
        <chain name="downloadGrapes">
          <filesystem name="cachedGrapes">
            <ivy pattern="${user.home}/.groovy/grapes/[organisation]/[module]/ivy-[revision].xml"/>
            <artifact pattern="${user.home}/.groovy/grapes/[organisation]/[module]/[type]s/[artifact]-[revision].[ext]"/>
          </filesystem>
          <ibiblio name="ibiblio" m2compatible="true"/>
        </chain>
      </resolvers>
    </ivysettings>
    
      

    插件安装的过程由Grape处理,这有帮助   将依赖关系解析为类路径。

    1. the documentation here
    2. 中提到的gremlin服务器上安装neo4j依赖项

      cd YOUR_SERVER_LOCATION

      bin/gremlin-server.sh install org.apache.tinkerpop neo4j-gremlin 3.3.3

      您将在 YOUR_SERVER_LOCATION / ext

      中看到 neo4j-gremlin 文件夹
      1. 启动服务器
      2. bin/gremlin-server.sh conf/gremlin-server-neo4j.yaml