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 deploy-nebula-graph-cluster.md #1196

Merged
merged 1 commit into from
Mar 29, 2022
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,19 @@ sudo /usr/local/nebula/scripts/nebula.service start <metad|graphd|storaged|all>

- `/usr/local/nebula` is the default installation path for Nebula Graph. Use the actual path if you have customized the path. For more information about how to start and stop the services, see [Manage Nebula Graph services](../manage-service.md).

### Step 4: Check the cluster status
### Step 4: Add hosts
```bash
$ ./nebula-console --addr 192.168.10.111 --port 9669 -u root -p nebula

Welcome to Nebula Graph!

> ADD HOSTS 192.168.10.111:9779,192.168.10.112:9779,192.168.10.113:9779,192.168.10.114:9779,192.168.10.115:9779
Execution succeeded (time spent 1074/1295 us)

Fri, 25 Mar 2022 13:37:14 JST
```

### Step 5: Check the cluster status

Install the native CLI client [Nebula Console](../../2.quick-start/3.connect-to-nebula-graph.md), then connect to any machine that has started the graphd process, and run `SHOW HOSTS` to check the cluster status. For example:

Expand Down