Run multiple instances from same workspace

* Support running leader and validators from multiple machines
  using the same NFS mounted workspace.
* Changes to setup, leader and validator scripts
This commit is contained in:
Pankaj Garg
2018-06-22 11:37:42 -07:00
committed by Greg Fitzgerald
parent 3dbbb398df
commit 9209f9acde
3 changed files with 23 additions and 3 deletions

View File

@ -5,5 +5,11 @@ TOKENS=${1:-1000000000}
cargo run --release --bin solana-mint-demo <<<"${TOKENS}" > mint-demo.json
cargo run --release --bin solana-genesis-demo < mint-demo.json > genesis.log
cargo run --release --bin solana-fullnode-config -- -d > leader.json
cargo run --release --bin solana-fullnode-config -- -b 9000 -d > validator.json
IPADDR="$(ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}')"
if [ -z "$IPADDR" ]; then
IPADDR="$(ifconfig | grep 'inet '| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $2}')"
fi
cargo run --release --bin solana-fullnode-config -- -d > leader-$IPADDR.json
cargo run --release --bin solana-fullnode-config -- -b 9000 -d > validator-$IPADDR.json