From 21252118e7a77be9a587c59281c539073f3e5d7f Mon Sep 17 00:00:00 2001 From: Jarod Pauchet Date: Thu, 12 Sep 2024 10:32:30 +0200 Subject: [PATCH] =?UTF-8?q?=09nouveau=20fichier=C2=A0:=20sio2/sisr/Heartbe?= =?UTF-8?q?at/inst-hb1.sh=20=09nouveau=20fichier=C2=A0:=20sio2/sisr/Heartb?= =?UTF-8?q?eat/inst-hb2.sh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sio2/sisr/Heartbeat/inst-hb1.sh | 49 +++++++++++++++++++++++++++++++++ sio2/sisr/Heartbeat/inst-hb2.sh | 49 +++++++++++++++++++++++++++++++++ 2 files changed, 98 insertions(+) create mode 100644 sio2/sisr/Heartbeat/inst-hb1.sh create mode 100644 sio2/sisr/Heartbeat/inst-hb2.sh diff --git a/sio2/sisr/Heartbeat/inst-hb1.sh b/sio2/sisr/Heartbeat/inst-hb1.sh new file mode 100644 index 0000000..71a0a39 --- /dev/null +++ b/sio2/sisr/Heartbeat/inst-hb1.sh @@ -0,0 +1,49 @@ +#!/bin/bash +# les bases +# noeud hb1 : 192.168.0.115 +# noeud hb2 : 192.168.0.116 +# addr virt. : 192.168.0.117 + +sed -i 's/bookworm/hb1/g' /etc/host{s,name} +apt update +apt install -y heartbeat apache2 net-tools +systemctl disable apache2 + +cat < /etc/network/interfaces.d/enp0s3 +allow-hotplug enp0s3 +iface enp0s3 inet static +address 192.168.0.115/24 # a adapter pour hb2 +EOT + +cat < /etc/network/interfaces.d/enp0s8 +allow-hotplug enp0s8 +iface enp0s8 inet static +address 10.0.0.1/24 # a adapter pour hb2 +EOT + +cd /usr/share/doc/heartbeat +gunzip *.gz +cp ha.cf /etc/ha.d +cp haresources /etc/ha.d +cp authkeys /etc/ha.d +cd /etc/ha.d +echo "192.168.0.116 hb2" >> /etc/hosts # a adapter pour hb2 + +cat <> /etc/ha.d/ha.cf +bcast enp0s8 +node hb1 +node hb2 +pacemaker off +EOT + +# echo " hb1 192.168.0.117 apache2" >> /etc/ha.d/haresources pou Debian buster +echo " hb1 192.168.0.117/24/enp0s3 apache2" >> /etc/ha.d/haresources + +cat <> /etc/ha.d/authkeys +auth 1 +1 crc +EOT + +chmod 600 /etc/ha.d/authkeys +echo hb1 > /var/www/html/index.html # a adapter pour hb2 + # \ No newline at end of file diff --git a/sio2/sisr/Heartbeat/inst-hb2.sh b/sio2/sisr/Heartbeat/inst-hb2.sh new file mode 100644 index 0000000..5a60aa9 --- /dev/null +++ b/sio2/sisr/Heartbeat/inst-hb2.sh @@ -0,0 +1,49 @@ +#!/bin/bash +# les bases +# noeud hb1 : 192.168.0.115 +# noeud hb2 : 192.168.0.116 +# addr virt. : 192.168.0.117 + +sed -i 's/bookworm/hb2/g' /etc/host{s,name} +apt update +apt install -y heartbeat apache2 net-tools +systemctl disable apache2 + +cat < /etc/network/interfaces.d/enp0s3 +allow-hotplug enp0s3 +iface enp0s3 inet static +address 192.168.0.116/24 # a adapter pour hb2 +EOT + +cat < /etc/network/interfaces.d/enp0s8 +allow-hotplug enp0s8 +iface enp0s8 inet static +address 10.0.0.2/24 # a adapter pour hb2 +EOT + +cd /usr/share/doc/heartbeat +gunzip *.gz +cp ha.cf /etc/ha.d +cp haresources /etc/ha.d +cp authkeys /etc/ha.d +cd /etc/ha.d +echo "192.168.0.116 hb2" >> /etc/hosts # a adapter pour hb2 + +cat <> /etc/ha.d/ha.cf +bcast enp0s8 +node hb1 +node hb2 +pacemaker off +EOT + +# echo " hb1 192.168.0.117 apache2" >> /etc/ha.d/haresources pou Debian buster +echo " hb1 192.168.0.117/24/enp0s3 apache2" >> /etc/ha.d/haresources + +cat <> /etc/ha.d/authkeys +auth 1 +1 crc +EOT + +chmod 600 /etc/ha.d/authkeys +echo hb2 > /var/www/html/index.html # a adapter pour hb2 + # \ No newline at end of file