Skip to content

Commit

Permalink
Update ex-ug-deploy.md
Browse files Browse the repository at this point in the history
  • Loading branch information
abby-cyber authored Apr 22, 2022
1 parent ae1fd14 commit 653f180
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs-2.0/nebula-explorer/deploy-connect/ex-ug-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ sudo systemctl stop nebula-explorer.service
使用以下的命令卸载 Explorer。

```bash
sudo rpm -e nebula-explorer-<version>.x86_64
sudo dpkg -r nebula-explorer
```

## TAR 包部署
Expand All @@ -180,33 +180,33 @@ sudo rpm -e nebula-explorer-<version>.x86_64
2. 使用 `tar -xvf` 解压 tar 包。

```bash
$ tar -xvf nebula-graph-explorer-<version>.tar.gz
tar -xvf nebula-graph-explorer-<version>.tar.gz
```

3. 拷贝 License 至`nebula-explorer`目录下。

```bash
$ cp -r <license> <explorer_path>
cp -r <license> <explorer_path>
```

例如:
```bash
$ cp -r nebula.license /usr/local/nebula-explorer
cp -r nebula.license /usr/local/nebula-explorer
```

4. 进入`nebula-explorer`文件夹,启动 Explorer。

```bash
$ cd nebula-explorer
$ ./nebula-httpd &
cd nebula-explorer
./nebula-httpd &
```

### 停止服务

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

```bash
$ kill $(lsof -t -i :7002)
kill $(lsof -t -i :7002)
```

## 后续操作
Expand Down

0 comments on commit 653f180

Please sign in to comment.