Sunday, 18 November 2018

Script to start your multics automatically when it crashes

Here is a a script that keeps starting if MultiCS goes off continuously.


#############################################################################
##############################################################################
save the below code in a file name:> multics-check.sh
##############################################

#!/bin/sh
if ps x |grep -v grep |grep -c multics >/dev/null
then
echo "multics... ok"
else
echo "multics... restarting"
echo "multics restart at $(date +"%F u %H:%Mh")" >> /home/script/multics_check.log
/etc/init.d/multics
/usr/local/bin/multics -b -C /var/etc/multics.cfg &
fi

# This script is executed everytime Multics goes off for no reason.
# Make sure that the script is well configured by your side and it will work successfully.
# peace, ppv


####################################################


Just put the above made script file in root/home and give permissions 755.

#####################################################################################
#######################################################################################
Than Done! Do a test for experimental use, by turning off your Multics and it will start again itself after 60seconds.

#########################################################################################
########################################################################################

add a second file (code below) that will help first script to restart multics automatically after it goes off.

##########################################################
save the below code in a file name:> multics

echo multics Baslatiliyor
killall -9 multics
pkill multics
sleep 2
/usr/local/bin/multics -b -C /var/etc/multics.cfg &


#################################################################################################################
put the second file multics in folder /root/etc/init.d/ and give permissions 755.

Do not forget to put this in the footer of file: etc/rc.local

# By default this script does nothing.
/usr/local/bin/multics -b -C /var/etc/multics.cfg &
sleep 60
exit 0
##########################################################################
Hope it will help to start your multics automatically when it crashes

No comments:

Post a Comment