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,否則只能本地訪問,外網無法訪問。

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