Repository: kudu Updated Branches: refs/heads/master 240695332 -> b22f9d7e8
[kudu-jepsen] fixed typo in README.adoc For the kudu-jepsen module, './gradlew' should be run from the upper-level (parent) directory (i.e. $KUDU_ROOT/java). Also, updated the wording and path specification for the example involving the 'sshKeyPath' run-time property. Change-Id: I01a62d135aad560fa26f7a3ccf746813d3ec279e Reviewed-on: http://gerrit.cloudera.org:8080/11932 Tested-by: Kudu Jenkins Reviewed-by: Hao Hao <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/b22f9d7e Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/b22f9d7e Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/b22f9d7e Branch: refs/heads/master Commit: b22f9d7e86a05c559bffcfd6b897da5bc2aba4ce Parents: 2406953 Author: Alexey Serbin <[email protected]> Authored: Wed Nov 14 15:47:00 2018 -0800 Committer: Alexey Serbin <[email protected]> Committed: Thu Nov 15 01:41:04 2018 +0000 ---------------------------------------------------------------------- java/kudu-jepsen/README.adoc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/b22f9d7e/java/kudu-jepsen/README.adoc ---------------------------------------------------------------------- diff --git a/java/kudu-jepsen/README.adoc b/java/kudu-jepsen/README.adoc index 2339f9d..827bd5e 100644 --- a/java/kudu-jepsen/README.adoc +++ b/java/kudu-jepsen/README.adoc @@ -74,17 +74,18 @@ that SSH keys are installed accordingly: via the `sshKeyPath` property. If using SSH authentication agent to hold the SSH key for DB nodes access, -run in the current directory: +run in the parent directory: [listing] ---- $ ./gradlew runJepsen -DtserverNodes="t0,t1,t2,t3,t4" -DmasterNodes="m0" ---- -If not using SSH authentication agent, specify the SSH key location via the -`sshKeyPath` property: +If not using SSH authentication agent, specify the location of the file with +SSH private key via the `sshKeyPath` property: [listing] ---- -$ ./gradlew runJepsen -DtserverNodes="t0,t1,t2,t3,t4" -DmasterNodes="m0" -DsshKeyPath="./vm_root_id_rsa" +$ ./gradlew runJepsen -DtserverNodes="t0,t1,t2,t3,t4" -DmasterNodes="m0" \ + -DsshKeyPath="/home/user/.ssh/vm_root_id_rsa" ---- Note that commas (not spaces) are used to separate the names of the nodes. The
