Skip to content

Commit

Permalink
IGNITE-23586 Update DEVNOTES.md according to current CLI implementati…
Browse files Browse the repository at this point in the history
…on (apache#4666)
  • Loading branch information
ivanzlenko authored Oct 31, 2024
1 parent ac40e77 commit 721055e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions DEVNOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,11 @@ the docker image using `cli` parameter and connect to nodes using their names fr
docker compose -f packaging/docker/docker-compose.yml up -d
docker run -it --rm --net ignite3_default apacheignite/ignite3 cli
> connect http://node1:10300
> cluster init --name cluster --meta-storage-node node1 --meta-storage-node node2 --meta-storage-node node3
> cluster init --name cluster --metastorage-group=node1,node2,node3
```
Node names could be obtained using following command:
```shell
> cluster topology physical
```

### How to launch multiple nodes on the same machine
Expand Down Expand Up @@ -389,8 +393,8 @@ To initialize a cluster run the following command inside Ignite CLI:
```shell
cluster init
--name myClusterOfThreeNodes
--cmg-node node1 --cmg-node node2 --cmg-node node3
--meta-storage-node node1 --meta-storage-node node2 --meta-storage-node node3
--cluster-management-group=node1,node2,node3
--metastorage-group=node1,node2,node3
```

To stop all nodes:
Expand Down

0 comments on commit 721055e

Please sign in to comment.