欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JanusGraph的可视化工具.graphexp的安装

程序员文章站 2024-01-19 13:38:16
...

1.下载graphexp源码
1)下载https://github.com/bricaud/graphexp的zip包
2)解压graphexp-master.zip
2.安装依赖
1)yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel
3.安装PCRE
1)cd /usr/local/src/
2)wget http://downloads.sourceforge.net/project/pcre/pcre/8.35/pcre-8.35.tar.gz
3)tar zxvf pcre-8.35.tar.gz
4)cd pcre-8.35
5)./configure
6)make && make install
7)pcre-config --version
4.安装Nginx
1)cd /usr/local/src/
2)wget http://nginx.org/download/nginx-1.6.2.tar.gz
3)tar zxvf nginx-1.6.2.tar.gz
4)cd nginx-1.6.2
5)./configure --prefix=/usr/local/webserver/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/usr/local/src/pcre-8.35
6)make
7)make install
8)/usr/local/webserver/nginx/sbin/nginx -v
5.配置Nginx

  1)vim /usr/local/webserver/nginx/conf/nginx.conf
    server {
        listen       80;
        server_name  localhost;
        location / {
            root   /root/graphexp-master;
            index  index.html index.htm;
        }
	}

2)查询http://10.4.7.30/graphexp.html

相关标签: JanusGraph