-
Notifications
You must be signed in to change notification settings - Fork 35
Setup Gremlin Server
To get started with Unipop using Gremlin-Server first you need to download it from Download.
Then after extracting you need to install the required Unipop modules by executing
bin/gremlin-server.sh install com.github.unipop-graph unipop-elastic 0.2.1
or
bin/gremlin-server.sh install com.github.unipop-graph unipop-jdbc 0.2.1
or
bin/gremlin-server.sh install com.github.unipop-graph unipop-rest 0.2.1
if you are using windows then you should execute bin/gremlin-server.bat install ...
After installing the required modules we need to configure the server to load Unipop to do this you start by creating a new properties file with
gremlin.graph=org.unipop.structure.UniGraph
providers=/path/to/mapping_folder
...
and then duplicating the default server configuration file conf/gremlin-server.yaml
and editing some of its properties.
First you need to add the plugin to the plugins section by adding
org.unipop.plugin.UnipopPlugin: {}
after that you need to change the graph property to point to your properties file ie. graph:conf/unipop.properties
.
And simply executing the server with you server configuration file ie. bin/gremlin-server.sh conf/unipop-server.yaml
.