HugeGraph-Studio编译安装

由于官网提供的最新的HugeGraph-Studio存在BUG导致Gremlin语句无法正确提交,所以需要编译最新的代码安装HugeGraph-Studio。但是由于官网提供的编译安装步骤比较简略,编译过程中容易出现问题,故梳理完整的编译步骤:

一、下载代码:

git clone https://github.com/hugegraph/hugegraph-studio.git

二、安装相关依赖:

yum install -y nodejs
yum install autoconf automake libtool libpng-dev

如果安装太慢可以更换成国内的源。

三、编译:

cd hugegraph-studio
mvn package -DskipTests

四、配置

studio.server.port=8089
studio.server.host=192.168.0.1

graph.server.host=192.168.0.1
graph.server.port=8088
graph.name=hugegraph

这里注意host一定要配置本机的ip,不要使用localhost或者127.0.0.1,否则只能本地访问,外网无法访问。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章