PVE, Repliche e Backup

Ultimamente, diciamo dall’aggiornamento di PVE alla versione 7.1, sto avendo alcuni problemi con la replica dei LXC e delle VM.

Purtroppo ho poco tempo per indagare a fondo, ma uno degli effetti è quello di trovare snapshot VZDUMP (quindi prodotti dal backup), pendenti ma che non possono essere eliminati perché alcune repliche dipendono da esso.

Ho pensato di tagliare la testa al toro, utilizzando la funzionalità, ampiamente documentata (si, sono sarcastico), degli hook script (cioè script che vengono richiamati prima e dopo il backup) per disabilitare le repliche prima e riabilitarle dopo il backup. Ecco lo script, da mettere in ogni nodo del cluster:

#!/bin/bash

if [ "$1" == "job-start" ]; then
  #disabilito le schedulazioni delle repliche
  
	for vm in $(pct list| grep -v VMID| awk {'print $1'};qm list | grep -v VMID| awk {'print $1'}) 
	do 
		ids=$(pvesr list | grep $vm| awk {'print $1'})
		for id in $ids
		do
			pvesr disable $id
		done
	done
   
   #attendo che le repliche siano effettivamente ferme
   
	statuses=$(pvesr status | awk {'print $8'} | grep -v State)
	
	running=pippo
	
	until [ $running == false ]
	do
		running=false
		statuses=$(pvesr status | awk {'print $8'} | grep -v State)
		for status in $statuses 
		do 
			if [ $status == "Running" ] || [ $status == "SYNCING" ] 
			then 
				running=true
			fi
		done
	done
  
  
fi

if [ "$1" == "job-end" ]; then
  #abilito le schedulazioni delle repliche
  
   for vm in $(pct list| grep -v VMID| awk {'print $1'};qm list | grep -v VMID| awk {'print $1'}) 
   do 
	 ids=$(pvesr list | grep $vm| awk {'print $1'})
	 for id in $ids
	 do
		pvesr enable $id
	done
   done
fi

exit 0

dopo aver messo lo script da qualche parte e avergli dato i permessi di esecuzione, occorre andare a specificarlo nel file /etc/vzdump.conf.

Leave a Reply

Your email address will not be published. Required fields are marked *

© 2024 Bertorello.info | WordPress Theme : ScrollMe

By continuing to use the site, you agree to the use of cookies. more information

The cookie settings on this website are set to "allow cookies" to give you the best browsing experience possible. If you continue to use this website without changing your cookie settings or you click "Accept" below then you are consenting to this.

Close