inserted gopath into deploy so that path is available

pull/3/head
alok 7 years ago
parent d8a9a34d58
commit ed9e770c69
  1. 3
      aws-scripts/run_instances.sh
  2. 6
      deploy_linux.sh

@ -1,7 +1,4 @@
#!/bin/bash -x
cd /home/ec2-user/projects/src/harmony-benchmark
# GOROOT is the location where Go package is installed on your system
source ~/.bash_profile
./deploy_linux.sh local_iplist.txt
./send_txn.sh

@ -1,3 +1,4 @@
#!/bin/bash -x
##The commented suffix is for linux
##Reference: https://github.com/Zilliqa/Zilliqa/blob/master/tests/Node/test_node_simple.sh
sudo sysctl net.core.somaxconn=1024
@ -8,6 +9,11 @@ sudo sysctl -w net.ipv4.tcp_wmem='65536 873800 1534217728';
sudo sysctl -w net.ipv4.tcp_mem='65536 873800 1534217728';
./kill_node.sh
source ~/.bash_profile
echo "Inside deploy linux"
echo $GOPATH
echo "Inside deploy linux line 2"
ipfile=$1
while read ip port mode; do
#echo $ip $port $mode $ipfile

Loading…
Cancel
Save