Switch snap to bootstrap-fullnode/fullnode naming

This commit is contained in:
Michael Vines
2018-12-05 17:03:49 -08:00
parent 4170f11958
commit a6312ba98f
5 changed files with 20 additions and 20 deletions

View File

@@ -177,7 +177,7 @@ Runtime configuration files for the daemon can be found in
#### Leader Daemon
```bash
$ sudo snap set solana mode=leader
$ sudo snap set solana mode=bootstrap-fullnode
```
`rsync` must be configured and running on the leader.
@@ -200,24 +200,24 @@ to port tcp:873, tcp:9900 and the port range udp:8000-udp:10000**
To run both the Leader and Drone:
```bash
$ sudo snap set solana mode=leader+drone
$ sudo snap set solana mode=bootstrap-fullnode+drone
```
#### Validator daemon
```bash
$ sudo snap set solana mode=validator
$ sudo snap set solana mode=fullnode
```
By default the validator will connect to **testnet.solana.com**, override
the leader IP address by running:
By default the node will attempt to connect to **testnet.solana.com**, override the
cluster entrypoint IP address by running:
```bash
$ sudo snap set solana mode=validator leader-address=127.0.0.1 #<-- change IP address
$ sudo snap set solana mode=fullnode entrypoint-ip=127.0.0.1 #<-- change IP address
```
It's assumed that the leader will be running `rsync` configured as described in
the previous **Leader daemon** section.
It's assumed that the node at the entrypoint IP will be running `rsync`
configured as described in the previous **Leader daemon** section.