From 09da6b4b48fcc3cd2cdb11cec9211343d76d7302 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 22 Jul 2019 08:23:36 -0700 Subject: [PATCH] Encourage setting an RPC port --- book/src/testnet-participation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/book/src/testnet-participation.md b/book/src/testnet-participation.md index b96509708b..15cb21a4cc 100644 --- a/book/src/testnet-participation.md +++ b/book/src/testnet-participation.md @@ -156,20 +156,20 @@ choice, to start the node: If this is a `solana-install`-installation: ```bash $ clear-config.sh -$ validator.sh --identity ~/validator-keypair.json --poll-for-new-genesis-block testnet.solana.com +$ validator.sh --identity ~/validator-keypair.json --rpc-port 8899 --poll-for-new-genesis-block testnet.solana.com ``` Alternatively, the `solana-install run` command can be used to run the validator node while periodically checking for and applying software updates: ```bash $ clear-config.sh -$ solana-install run validator.sh -- --identity ~/validator-keypair.json --poll-for-new-genesis-block testnet.solana.com +$ solana-install run validator.sh -- --identity ~/validator-keypair.json --rpc-port 8899 --poll-for-new-genesis-block testnet.solana.com ``` If you built from source: ```bash $ USE_INSTALL=1 ./multinode-demo/clear-config.sh -$ USE_INSTALL=1 ./multinode-demo/validator.sh --identity ~/validator-keypair.json --poll-for-new-genesis-block testnet.solana.com +$ USE_INSTALL=1 ./multinode-demo/validator.sh --identity ~/validator-keypair.json --rpc-port 8899 --poll-for-new-genesis-block testnet.solana.com ``` #### Enabling CUDA