-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·98 lines (90 loc) · 1.94 KB
/
setup.sh
File metadata and controls
executable file
·98 lines (90 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
if [ $# -eq 0 ]
then
pkill screen
screen -d -m ./quorum-node.sh
pm2 start ./apis/ecosystem.config.js
sleep 10;
screen -d -m bash -i -c "node ./apis/init.js 2>&1 | tee /dynamo/bcData/init.log"
screen -d -m bash -i -c "./indexer.sh 2>&1 | tee /dynamo/bcData/indexer.log"
while true;
do
REMOTEHOST=127.0.0.1
REMOTEPORTETH=23000
REMOTEPORTRPC=8545
REMOTEPORTREADFILE=6382
REMOTEPORTSCANNER=5742
TIMEOUT=5
if nc -zv $REMOTEHOST $REMOTEPORTETH; then
sleep 5;
else
echo "Failed due to 23000";
exit
fi
if nc -zv $REMOTEHOST $REMOTEPORTRPC; then
sleep 5;
else
echo "Failed due to 8545";
exit
fi
done
fi
if [ $# -eq 2 ]
then
pkill screen
screen -d -m ./quorum-node.sh $1 $2
pm2 start ./apis/ecosystem.config.js
sleep 10;
screen -d -m bash -i -c 'node ./apis/init.js 2>&1 | tee /dynamo/bcData/init.log'
screen -d -m bash -i -c "./indexer.sh 2>&1 | tee /dynamo/bcData/indexer.log"
while true;
do
REMOTEHOST=127.0.0.1
REMOTEPORTETH=23000
REMOTEPORTRPC=8545
REMOTEPORTREADFILE=6382
REMOTEPORTSCANNER=5742
TIMEOUT=5
if nc -zv $REMOTEHOST $REMOTEPORTETH; then
sleep 5;
else
echo "Failed due to 23000";
exit
fi
if nc -zv $REMOTEHOST $REMOTEPORTRPC; then
sleep 5;
else
echo "Failed due to 8545";
exit
fi
done
fi
if [ $# -eq 3 ]
then
pkill screen
screen -d -m ./quorum-node.sh $1 $2 $3
pm2 start ./apis/ecosystem.config.js
sleep 10;
screen -d -m bash -i -c "node ./apis/init.js 2>&1 | tee /dynamo/bcData/init.log"
screen -d -m bash -i -c "./indexer.sh 2>&1 | tee /dynamo/bcData/indexer.log"
while true;
do
REMOTEHOST=127.0.0.1
REMOTEPORTETH=23000
REMOTEPORTRPC=8545
REMOTEPORTREADFILE=6382
REMOTEPORTSCANNER=5742
TIMEOUT=5
if nc -zv $REMOTEHOST $REMOTEPORTETH; then
sleep 5;
else
echo "Failed due to 23000";
exit
fi
if nc -zv $REMOTEHOST $REMOTEPORTRPC; then
sleep 5;
else
echo "Failed due to 8545";
exit
fi
done
fi