Merge pull request #257 from bigchaindb/aws-deploy-doesnt-auto-start-servers

AWS deployment script doesn't auto-start servers anymore
This commit is contained in:
Troy McConaghy 2016-05-09 13:24:45 +02:00
commit 5c26bb439a
2 changed files with 1 additions and 3 deletions

View File

@ -131,9 +131,6 @@ if [ "$WHAT_TO_DEPLOY" == "servers" ]; then
# this will only be sent to one of the nodes, see the # this will only be sent to one of the nodes, see the
# definition of init_bigchaindb() in fabfile.py to see why. # definition of init_bigchaindb() in fabfile.py to see why.
fab init_bigchaindb fab init_bigchaindb
# Start BigchainDB on all the nodes using "screen"
fab start_bigchaindb
else else
# Deploying clients # Deploying clients
# The only thing to configure on clients is the api_endpoint # The only thing to configure on clients is the api_endpoint

View File

@ -153,6 +153,7 @@ Here's an example of how one could launch a BigchainDB cluster of three (3) node
cd bigchaindb cd bigchaindb
cd deploy-cluster-aws cd deploy-cluster-aws
./awsdeploy.sh 3 ./awsdeploy.sh 3
fab start_bigchaindb
``` ```
`awsdeploy.sh` is a Bash script which calls some Python and Fabric scripts. The usage is: `awsdeploy.sh` is a Bash script which calls some Python and Fabric scripts. The usage is: