Install Siemplify DB availability detection script
-
Edit siemplify_pg_detect.sh and update
-
V_SERVER_NODE_1=”[primary_db_ip]”
-
V_SERVER_NODE_2=”[slave_db_ip]”
-
PRIMARY_NODE_1=$(PGPASSWORD=[db_password]
-
PRIMARY_NODE_2=$(PGPASSWORD=[db_password]
-
SMTP_SERVER=” “
-
PORT=” “
-
SENDER_EMAIL=” “
-
PASSWORD=” “
-
RECEIVER_EMAIL=” “
-
SUBJECT=” “
-
CONTENT=” “
-
At line 55 Edit the path to the file Sendmail.py location.
-
Configure Mailx on the application nodes for sending emails in case of a
failover, if Mailx is not configured, the mail notification resource
configuration can be omitted.
-
sudo yum install mailx
-
Edit mail.rc file → etc/ mail.rc
Delete all the content on the
file and add the following fields:
account gmail { set
smtp-use-starttls set ssl-verify=ignore set smtp-auth=login set
smtp=smtp://smtp.gmail.com:587 set
from=“example@siemplify.co” set smtp-auth-user= set
smtp-auth-password= set ssl-verify=ignore set
nss-config-dir=/etc/pki/nssdb/
}
-
Create pcs resource
pcs resource create importantgroup-mailto
MailTo email=exmaple@siemplify.co subject=“A fail over of
siemplify app has occurred”
-
The following command creates a colocation constraint:
pcs
constraint colocation add importantgroup-mailto with
PlaybookActions_service score=INFINITY
-
Validate the resource is added to the cluster and following the primary
application “pcs status”
-
Upload HA APP rpms.zip and siemplify_pg_detect.sh to both app
machines
-
Unzip HA APP rpms.zip and install with “sudo yum
install” the rpms on both app machines.
-
Configure the crontab job on both app machines with the following commands:
-
chmod +x /home/siemplify_pg_detect.sh
-
chmod +x /home/Sendmail.py
-
crontab -l > //tmpjobs
-
echo
reboot /home/siemplify_pg_detect.sh >> /root/tmpjobs@ (make sure
the path here is the same as the path in a above)
-
crontab /root/tmpjobs
-
rm -f /root/tmpjobs
-
reboot - both nodes
-
Use
ps -aux | grep siemplify
to make sure the process finished successfully.