-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add drone information to multinode demo instructions
- Loading branch information
1 parent
b253ed0
commit 64f88d6
Showing
2 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ $ source $HOME/.cargo/env | |
Now checkout the code from github: | ||
|
||
```bash | ||
$ git clone https://github.com/solana-labs/solana.git | ||
$ git clone https://github.com/solana-labs/solana.git | ||
$ cd solana | ||
``` | ||
|
||
|
@@ -84,16 +84,23 @@ Now start the server: | |
$ ./multinode-demo/leader.sh | ||
``` | ||
|
||
To run a performance-enhanced fullnode on Linux, | ||
[CUDA 9.2](https://developer.nvidia.com/cuda-downloads) must be installed on | ||
your system: | ||
Wait a few seconds for the server to initialize. It will print "Ready." when it's ready to | ||
receive transactions. | ||
|
||
Drone | ||
--- | ||
|
||
In order for the below test client and validators to work, we'll also need to | ||
spin up a drone to give out some test tokens. The drone delivers Milton | ||
Friedman-style "air drops" (free tokens to requesting clients) to be used in | ||
test transactions. | ||
|
||
Start the drone on the leader node with: | ||
|
||
```bash | ||
$ ./fetch-perf-libs.sh | ||
$ SOLANA_CUDA=1 ./multinode-demo/leader.sh | ||
$ ./multinode-demo/drone.sh | ||
``` | ||
|
||
Wait a few seconds for the server to initialize. It will print "Ready." when it's ready to | ||
receive transactions. | ||
|
||
Multinode Testnet | ||
--- | ||
|
@@ -104,15 +111,18 @@ To run a multinode testnet, after starting a leader node, spin up some validator | |
$ ./multinode-demo/validator.sh [email protected]:~/solana 10.0.1.51 | ||
``` | ||
|
||
To run a performance-enhanced fullnode on Linux, | ||
To run a performance-enhanced leader or validator (on Linux), | ||
[CUDA 9.2](https://developer.nvidia.com/cuda-downloads) must be installed on | ||
your system: | ||
```bash | ||
$ ./fetch-perf-libs.sh | ||
$ SOLANA_CUDA=1 ./multinode-demo/leader.sh [email protected]:~/solana 10.0.1.51 | ||
$ SOLANA_CUDA=1 ./multinode-demo/leader.sh | ||
$ SOLANA_CUDA=1 ./multinode-demo/validator.sh [email protected]:~/solana 10.0.1.51 | ||
|
||
``` | ||
|
||
|
||
|
||
Testnet Client Demo | ||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters