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 #1344

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":

The returned subgraph is as follows.

![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)

* This example goes one step from the vertex `player101` over incoming `follow` edges and gets the subgraph.

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

The returned subgraph is as follows.

![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
7 changes: 3 additions & 4 deletions docs-2.0/nebula-explorer/deploy-connect/ex-ug-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Before deploying Explorer, you must check the following information:

You can also install it to the specified path using the following command:
```bash
sudo rpm -i nebula-explorer-xxx.rpm --prefix=<path>
sudo rpm -i nebula-explorer-<version>.x86_64.rpm --prefix=<path>
```

3. Copy the license to the installation path.
Expand All @@ -72,11 +72,10 @@ Before deploying Explorer, you must check the following information:
cp -r nebula.license /usr/local/nebula-explorer
```

4. After adding the license, you need to stop and restart the service using the following command.
4. Start the service using the following command.

```bash
systemctl stop nebula-explorer #Stop the service
systemctl start nebula-explorer #Start the service
systemctl start nebula-explorer
```

### Start and stop
Expand Down