Skip to content

Commit 470c6e1

Browse files
authored
Merge pull request #2664 from Aaditya-T/patch-1
Updating path for validator keys
2 parents f9baf04 + e319d2f commit 470c6e1

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

docs/infrastructure/configuration/server-modes/run-rippled-as-a-validator.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,15 @@ Enabling validation on your `rippled` server means providing a validator token i
6767

6868
In a secure location **not** on your validator:
6969

70-
1. Manually build and run the `validator-keys` tool, if you don't already have it installed via a `rippled` RPM.
70+
1. Generate a validator key pair using the `validator-keys` tool, which is included in the `rippled` package:
7171

72-
For information about manually building and running the `validator-keys` tool, see [validator-keys-tool](https://github.com/ripple/validator-keys-tool).
73-
74-
2. Generate a validator key pair using the `create_keys` command.
72+
```
73+
$ cd /opt/ripple/bin/
74+
```
75+
Then run:
7576
7677
```
77-
$ validator-keys create_keys
78+
$ ./validator-keys create_keys
7879
```
7980
8081
Sample output on Ubuntu:
@@ -97,10 +98,10 @@ In a secure location **not** on your validator:
9798
9899
For more information about the `validator-keys` tool and the key pairs it generates, see the [Validator Keys Tool Guide](https://github.com/ripple/validator-keys-tool/blob/master/doc/validator-keys-tool-guide.md).
99100
100-
3. Generate a validator token using the `create_token` command.
101+
2. Generate a validator token using the `create_token` command. [Make sure you are at `/opt/ripple/bin/`]
101102
102103
```
103-
$ validator-keys create_token --keyfile /PATH/TO/YOUR/validator-keys.json
104+
$ ./validator-keys create_token --keyfile /PATH/TO/YOUR/validator-keys.json
104105
```
105106
106107
Sample output:

0 commit comments

Comments
 (0)