部署 Explorer

本文介绍如何在本地通过 RPM 和 tar 包部署 Explorer。

RPM 部署

前提条件

在部署 Explorer 之前,用户需要确认以下信息:

  • Nebula Graph 服务已经部署并启动。详细信息参考Nebula Graph安装部署

  • 以下端口未被使用。

    端口号说明
    7002Explorer 提供的 web 服务
    8070Nebula-http-gateway 的 HTTP 服务
  • 使用的 Linux 发行版为 CentOS ,安装有版本为 v10.16.0 + 以上的 Node.js。

安装

  1. 根据需要下载 RPM 包,建议选择最新版本。

  2. 使用sudo rpm -i <rpm>命令安装RPM包。

    例如,安装 Explorer 需要运行以下命令:

    1. $ sudo rpm -i nebula-graph-explorer-<version>.x86_64.rpm

卸载

使用以下的命令卸载 Explorer 。

  1. $ sudo rpm -e nebula-graph-explorer-<version>.x86_64

异常处理

如果在安装过程中自动启动失败或是需要手动启动或停止服务,请使用以下命令.

  • 手动启动服务

    1. $ sudo sh ./scripts/start.sh
  • 手动停止服务

    1. $ sudo sh ./scripts/stop.sh

tar 包部署

前提条件

在部署 Explorer 之前,用户需要确认以下信息:

  • Nebula Graph 服务已经部署并启动。详细信息参考Nebula Graph安装部署

  • 使用的 Linux 发行版为 CentOS ,安装有版本为 v10.16.0 + 以上的 Node.js。

  • 以下端口未被使用。

    端口号说明
    7002Explorer 提供的 web 服务
    8070Nebula-http-gateway 的 HTTP 服务

安装

  1. 根据需要下载 tar 包,建议选择最新版本。

  2. 使用 tar -xvf 解压 tar 包。

    1. tar -xvf nebula-graph-explorer-<version>.tar.gz

部署

  1. 部署 nebula-http-gateway 并启动。

    1. $ cd nebula-http-gateway
    2. $ nohup ./nebula-httpd &
  2. 部署 nebula-graph-explorer

    1. $ cd nebula-graph-explorer
    2. $ npm run start

停止服务

用户可以采用kill pid的方式来关停服务:

  1. $ kill $(lsof -t -i :8070) # 停止 nebula-http-gateway
  2. $ cd nebula-graph-explorer
  3. $ npm run stop # 停止 nebula-graph-explorer

后续操作

启动成功后,在浏览器地址栏输入 http://<ip_address>:7002

在浏览器窗口中看到以下登录界面表示已经成功部署并启动了 Explorer。

Nebula Graph Explorer 登录页面

进入 Explorer 登录界面后,用户需要连接 Nebula Graph。详细信息,参考连接数据库