From 71306e5e70cc7cc6069351d4f78f3584b6fa30b4 Mon Sep 17 00:00:00 2001 From: Javier Arellano Date: Thu, 4 Oct 2018 12:43:19 +0200 Subject: [PATCH] Fix typo in example --server-readd not exixts as parameter it's --server-add --- .../modules/cli/pages/cbcli/couchbase-cli-server-readd.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/modules/cli/pages/cbcli/couchbase-cli-server-readd.adoc b/docs/modules/cli/pages/cbcli/couchbase-cli-server-readd.adoc index 1ba4acb1..49d36b6e 100644 --- a/docs/modules/cli/pages/cbcli/couchbase-cli-server-readd.adoc +++ b/docs/modules/cli/pages/cbcli/couchbase-cli-server-readd.adoc @@ -78,20 +78,20 @@ node has credentials that allow us to change the cluster topology with following command. $ couchbase-cli server-readd -c 192.168.1.5:8091 --username Administrator \ - --password password --server-readd 192.168.1.6:8091 \ + --password password --server-add 192.168.1.6:8091 \ --server-username Administrator --server-password password If you need to add back multiple nodes then you would run the following command. $ couchbase-cli server-readd -c 192.168.1.5:8091 --username Administrator \ - --password password --server-readd 192.168.1.6:8091,192.168.1.7:8091 \ + --password password --server-add 192.168.1.6:8091,192.168.1.7:8091 \ --server-username Administrator --server-password password If you wanted the nodes being added back to the cluster to be a part of the "East" group we would run the following command $ couchbase-cli server-readd -c 192.168.1.5:8091 --username Administrator \ - --password password --server-readd 192.168.1.6:8091 --group-name East \ + --password password --server-add 192.168.1.6:8091 --group-name East \ --server-username Administrator --server-password password == ENVIRONMENT AND CONFIGURATION VARIABLES