-
Notifications
You must be signed in to change notification settings - Fork 12
/
Master_Restart_functions.sh
425 lines (283 loc) · 8.59 KB
/
Master_Restart_functions.sh
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
#!/usr/bin/bash
#Export the variables needed to login
export DHOST=localhost:8081;
export DLOGIN=root;
export DPASS=.\$up3rN0v4;
COUNTER=0;
SKIP=FALSE;
FORCE=FALSE;
FORCE_2=FALSE;
COUNTER_2=0;
SKIP_2=FALSE;
MASTERSKIP=FALSE;
PROCEEDTOSTOP=YES;
#Checks if the variables are set
if [ -z "${DHOST+x}" -o -z "${DLOGIN+x}" -o -z "${DPASS+x}" ]; then
echo 'Error: environment variables are not set'
exit 1
fi
#Define the file containing the list of synchronizer IDs of the Master, one for each line of the file.
Synch_List=/home/luca/WORK/SyncList.txt;
#Cheks if the DHuS is running
DHuS_Port_Test=`netstat -an | grep 8081 | grep LISTEN | awk '{print $6}'`;
if [ -z "$DHuS_Port_Test" ]; then
echo "ERROR!! Are you sure DHuS is running? Aborting...";
exit 1;
fi
#Definition of the function that allows to interact with the synchronizer (start or stop it)
function Alter_Synchronizer {
ID=${1};
REQUEST=${2};
STATUS=`. /data/tools/dhus_restarter/getSynchronizer $ID | grep "<d:Status>" | grep -oP '(?<=>).*(?=<)'`;
echo "";
echo "Status of Synchronizer " $ID "is " $STATUS ;
echo "";
if [ "$REQUEST" = "STOP" ];
then
SKIP=FALSE;
SKIP_2=FALSE;
FORCE=FALSE;
FORCE_2=FALSE;
COUNTER=0;
echo "";
echo "Waiting for Synchronizer " $ID " to be PENDING";
while [[ "$STATUS" != "PENDING" && "$STATUS" != "STOPPED" && "$SKIP" != "YES" && "$FORCE" != "YES" ]];
do echo `date -u +"%Y-%m-%d %H:%M:%S UTC"` "Not Processing; waiting for PENDING or STOPPED" ;
let COUNTER=COUNTER+1;
if ! (( $COUNTER % 12 )) ; then
skipmenu;
else
sleep 5;
STATUS=`. /data/tools/dhus_restarter/getSynchronizer $ID | grep "<d:Status>" | grep -oP '(?<=>).*(?=<)'`;
fi
done
if [ "$STATUS" = "PENDING" ] || [ "$FORCE" = "YES" ]; then
echo "Synchronizer " $ID " is in state " $STATUS ", stopping it...";
. /data/tools/dhus_restarter/stopSync $ID;
STATUS=`. /data/tools/dhus_restarter/getSynchronizer $ID | grep "<d:Status>" | grep -oP '(?<=>).*(?=<)'`;
echo "Waiting for Synchronizer " $ID " to be STOPPED"
while [[ "$STATUS" != "STOPPED" && "$SKIP_2" != "YES" ]];
do echo `date -u +"%Y-%m-%d %H:%M:%S UTC"` "Not Processing; waiting for STOPPED" ;
let COUNTER_2=COUNTER_2+1;
if ! (( $COUNTER_2 % 12 )) ; then
skipmenu2;
else
sleep 5;
STATUS=`. /data/tools/dhus_restarter/getSynchronizer $ID | grep "<d:Status>" | grep -oP '(?<=>).*(?=<)'`;
fi
done
echo "Synchronizer " $ID " is in state " $STATUS;
fi
fi
if [ "$REQUEST" = "START" ];
then
echo "";
echo "Starting Synchronizer " $ID;
. /data/tools/dhus_restarter/startSync $ID;
STATUS=`. /data/tools/dhus_restarter/getSynchronizer $ID | grep "<d:Status>" | grep -oP '(?<=>).*(?=<)'`;
echo "Waiting for Synchronizer " $ID " to START"
while [[ "$STATUS" != "PENDING" && "$STATUS" != "RUNNING" ]];
do echo `date -u +"%Y-%m-%d %H:%M:%S UTC"` "Waiting for START" ;
STATUS=`. /data/tools/dhus_restarter/getSynchronizer $ID | grep "<d:Status>" | grep -oP '(?<=>).*(?=<)'`;
sleep 2;
done
echo "Synchronizer " $ID " is " $STATUS;
fi
}
#Definition of the function that allows to stop the DHuS
function Stop_DHuS {
STATUS_DHUS="";
echo "";
echo "Stopping DHuS instance with a 120s timeout";
timeout 120 systemctl --user stop dhus.service;
STATUS_DHUS=`ps -ef | grep java | grep -v grep`;
if [ -z "$STATUS_DHUS" ]; then
echo "";
echo "DHuS has been STOPPED";
echo "";
else
echo "";
echo "ERROR!!!! DHuS did not STOP correctly";
echo "";
KillMenu;
fi
}
#Definition of the function that allows to interact start the DHuS
function Start_DHuS {
echo "";
echo "";
echo "Starting DHuS instance" && systemctl --user start dhus.service;
echo "Waiting for DHuS instance to startup"
( tail -f -n0 /data/dhus-current/logs/dhus-master0?.log & ) | grep -q "Server is ready";
echo "DHuS started at `date -u +"%Y-%m-%d %H:%M:%S UTC"`";
}
#Definition of the function that creates the menu from wich you can start the DHuS once the synchronizers have been stopped
function mainmenu {
echo ""
echo "Press y to start DHuS"
echo "Press q to exit script"
echo ""
read -n 1 -p "Input Selection:" menuinput
if [ "$menuinput" = "y" ]; then
Start_DHuS;
elif [ "$menuinput" = "q" ]; then
exit 0
else
echo ""
echo "You have entered an invalid selection!"
echo "Please try again!"
echo ""
echo "Press any key to continue..."
read -n 1
clear
mainmenu
fi
}
#Definition of the function that creates the menu from wich you can skip or force stop a synchronizer in case it doesn't enter the state PENDING
function skipmenu {
echo ""
echo "Synchronizer seems to be stuck would you like to skip or try to stop it anyway?"
echo "Press s to skip this synchronizer"
echo "Press f to try and stop it"
echo "Press w to wait another minute"
echo ""
read -n 1 -p "Input Selection:" skipinput
if [ "$skipinput" = "s" ]; then
echo "";
echo "Skipping synchronizer " $ID;
SKIP=YES;
MASTERSKIP=YES;
elif [ "$skipinput" = "w" ]; then
echo "";
echo "Ok waiting another minute..."
elif [ "$skipinput" = "f" ]; then
echo "";
echo "Tryng to stop it..."
FORCE=YES;
else
echo ""
echo "You have entered an invalid selection!"
echo "Please try again!"
echo ""
echo "Press any key to continue..."
read -n 1
skipmenu
fi
}
#Definition of the function that creates the menu in case the synchronizer doesn't want to stop and from wich you can try to stop it again or skip it
function skipmenu2 {
echo ""
echo "Synchronizer doesn't want to stop, would you like to skip it, try and stop it again or wait?"
echo "Press s to skip this synchronizer"
echo "Press f to try and stop it again"
echo "Press w to wait another minute"
echo ""
read -n 1 -p "Input Selection:" skipinput
if [ "$skipinput" = "s" ]; then
echo "";
echo "Skipping synchronizer " $ID;
SKIP_2=YES;
MASTERSKIP=YES;
PROCEEDTOSTOP=FALSE;
elif [ "$skipinput" = "w" ]; then
echo "";
echo "Ok waiting another minute..."
elif [ "$skipinput" = "f" ]; then
echo "";
echo "Sending stop request again for synchronizer " $ID;
. /data/tools/dhus_restarter/stopSync $ID;
else
echo ""
echo "You have entered an invalid selection!"
echo "Please try again!"
echo ""
echo "Press any key to continue..."
read -n 1
skipmenu2
fi
}
#Definition of the function that creates the menu in case you skipped one or more synchronizers from wich you can decide to stop the DHuS anyway or not
function StopMenu {
echo ""
echo "WARNING! You have skipped one or more synchronizers"
echo ""
echo "Do you want to stop DHuS anyway?"
echo "Press y to stop DHuS"
echo "Press n to exit script without stopping DHuS"
echo ""
read -n 1 -p "Input Selection:" stopinput
if [ "$stopinput" = "y" ]; then
PROCEEDTOSTOP=YES;
elif [ "$stopinput" = "n" ]; then
exit 0
else
echo ""
echo "You have entered an invalid selection!"
echo "Please try again!"
echo ""
echo "Press any key to continue..."
read -n 1
stopmenu
fi
}
#Definition of the function that creates the menu in case the DHuS does not want to stop and from wich you can kill it
function KillMenu {
echo ""
echo "Do you want to kill -9 the DHuS process, exit or try gentle stop again"
echo ""
echo "Do you want to stop DHuS anyway?"
echo "Press k to kill -9 DHuS"
echo "Press s to try and stop it again gently"
echo "Press n to exit script without stopping DHuS"
echo ""
read -n 1 -p "Input Selection:" killinput
if [ "$killinput" = "k" ]; then
echo "";
echo "Killing DHuS..."
pid=`ps -ef | grep java | grep -v grep | awk '{print $2}'`;
kill -9 $pid;
sleep 5;
STATUS_DHUS=`ps -ef | grep java | grep -v grep`;
if [ -z "$STATUS_DHUS" ]; then
echo "";
echo "DHuS has been KILLED";
echo "";
else
echo "";
echo "ERROR!!!! DHuS is UNKILLABLE consider calling an exorcist";
echo "";
KillMenu
fi
elif [ "$killinput" = "n" ]; then
exit 0
elif [ "$killinput" = "s" ]; then
Stop_DHuS;
else
echo ""
echo "You have entered an invalid selection!"
echo "Please try again!"
echo ""
echo "Press any key to continue..."
read -n 1
KillMenu
fi
}
#EXECUTE FUNCTIONS
for SYNCHRONIZER in `cat $Synch_List`;
do
Alter_Synchronizer ${SYNCHRONIZER} STOP;
sleep 2;
done
if [ "$MASTERSKIP" = "YES" ]; then
StopMenu;
fi
if [ "$PROCEEDTOSTOP" = "YES" ]; then
Stop_DHuS;
mainmenu;
fi
for SYNCHRONIZER in `cat $Synch_List`;
do
Alter_Synchronizer ${SYNCHRONIZER} START;
sleep 2;
done
exit 0