Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update explorer #1777

Merged
merged 1 commit into from
May 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs-2.0/3.ngql-guide/16.subgraph-and-path/1.get-subgraph.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ nebula> INSERT EDGE serve(start_year, end_year) VALUES "player101" -> "team204":

返回的子图如下。

![GET SUBGRAPH FROM "player101"](https://docs-cdn.nebula-graph.com.cn/figures/subgraph-1.png)
![GET SUBGRAPH FROM "player101"](https://docs-cdn.nebula-graph.com.cn/figures/subgraph-1-22-5-7.png)

- 查询从点`player101`开始、0~1 跳、`follow`类型的入边的子图。

Expand Down Expand Up @@ -93,7 +93,7 @@ nebula> INSERT EDGE serve(start_year, end_year) VALUES "player101" -> "team204":

返回的子图如下。

![GET SUBGRAPH FROM "101" OUT serve](https://docs-cdn.nebula-graph.com.cn/figures/subgraph-2.png)
![GET SUBGRAPH FROM "101" OUT serve](https://docs-cdn.nebula-graph.com.cn/figures/subgraph-2-22-5-7.png)

## FAQ

Expand Down
9 changes: 4 additions & 5 deletions docs-2.0/nebula-explorer/deploy-connect/ex-ug-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
sudo rpm -i nebula-explorer-<version>.x86_64.rpm
```

也可以使用以下命令安装到指定路径
也可以使用`--prefix`选项安装到指定路径
```bash
sudo rpm -i nebula-explorer-xxx.rpm --prefix=<path>
sudo rpm -i nebula-explorer-<version>.x86_64.rpm --prefix=<path>
```

3. 拷贝 License 至安装路径下。
Expand All @@ -68,11 +68,10 @@
cp -r nebula.license /usr/local/nebula-explorer
```

4. 添加 License 后需要使用以下命令停止并重启服务
4. 执行以下命令启动服务

```bash
systemctl stop nebula-explorer #停止服务
systemctl start nebula-explorer #启动服务
systemctl start nebula-explorer
```

### 启停服务
Expand Down