|
|
@ -22,6 +22,8 @@ for more detail on cluster activity.
|
|
|
|
Sanity check that you are able to interact with the cluster by receiving a small
|
|
|
|
Sanity check that you are able to interact with the cluster by receiving a small
|
|
|
|
airdrop of lamports from the testnet drone:
|
|
|
|
airdrop of lamports from the testnet drone:
|
|
|
|
```bash
|
|
|
|
```bash
|
|
|
|
|
|
|
|
$ solana-wallet set --url http://testnet.solana.com:8899
|
|
|
|
|
|
|
|
$ solana-wallet get
|
|
|
|
$ solana-wallet airdrop 123
|
|
|
|
$ solana-wallet airdrop 123
|
|
|
|
$ solana-wallet balance
|
|
|
|
$ solana-wallet balance
|
|
|
|
```
|
|
|
|
```
|
|
|
@ -73,18 +75,18 @@ choice, to start the node:
|
|
|
|
|
|
|
|
|
|
|
|
If this is a `solana-install`-installation:
|
|
|
|
If this is a `solana-install`-installation:
|
|
|
|
```bash
|
|
|
|
```bash
|
|
|
|
$ validator.sh --identity ~/validator-keypair.json --voting-keypair ~/validator-vote-keypair.json --ledger ~/validator-config --rpc-port 8899 --poll-for-new-genesis-block testnet.solana.com
|
|
|
|
$ validator.sh --identity ~/validator-keypair.json --voting-keypair ~/validator-vote-keypair.json --ledger ~/validator-config --rpc-port 8899 --poll-for-new-genesis-block --entrypoint testnet.solana.com
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Alternatively, the `solana-install run` command can be used to run the validator
|
|
|
|
Alternatively, the `solana-install run` command can be used to run the validator
|
|
|
|
node while periodically checking for and applying software updates:
|
|
|
|
node while periodically checking for and applying software updates:
|
|
|
|
```bash
|
|
|
|
```bash
|
|
|
|
$ solana-install run validator.sh -- --identity ~/validator-keypair.json --voting-keypair ~/validator-vote-keypair.json --ledger ~/validator-config --rpc-port 8899 --poll-for-new-genesis-block testnet.solana.com
|
|
|
|
$ solana-install run validator.sh -- --identity ~/validator-keypair.json --voting-keypair ~/validator-vote-keypair.json --ledger ~/validator-config --rpc-port 8899 --poll-for-new-genesis-block --entrypoint testnet.solana.com
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
If you built from source:
|
|
|
|
If you built from source:
|
|
|
|
```bash
|
|
|
|
```bash
|
|
|
|
$ NDEBUG=1 USE_INSTALL=1 ./multinode-demo/validator.sh --identity ~/validator-keypair.json --voting-keypair ~/validator-vote-keypair.json --rpc-port 8899 --poll-for-new-genesis-block testnet.solana.com
|
|
|
|
$ NDEBUG=1 USE_INSTALL=1 ./multinode-demo/validator.sh --identity ~/validator-keypair.json --voting-keypair ~/validator-vote-keypair.json --rpc-port 8899 --poll-for-new-genesis-block --entrypoint testnet.solana.com
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
### Enabling CUDA
|
|
|
|
### Enabling CUDA
|
|
|
|