サーバー: XenServer 7.1
管理: XenCenter
目標:スケジュールされたスナップショットをUSB経由でサーバーに接続された外部ドライブに保存する
問題:サーバーは外部ドライブをリムーバブルストレージリポジトリとして認識しますが、スナップショットのデフォルトの場所として設定する場所が見つかりません。
これが私が作成したコードです。これは、Sudoのcronを介して毎日午前4時に実行されます
#!/bin/bash
datum=`date +%Y%b%d`
xsname=`hostname`
uuidfile=/root/xenuuids.txt
mountpoint=/var/removable
backuppath=$mountpoint/vms/$xsname/$datum
if [ ! -d $mountpoint/vms ]; then
mount /dev/sdb1 $mountpoint
mkdir $mountpoint/vms
fi
if [ ! -d $mountpoint/vms ]; then
echo "No mountpoint found. Please check!"
exit 0
fi
mkdir -p $backuppath
if [ ! -d $backuppath ]; then
echo "No backup path found. Please check!"
exit 0
fi
xe vm-list is-control-domain=false is-a-snapshot=false | grep uuid | cut -d":" -f2 > $uuidfile
if [ ! -f $uuidfile ]; then
echo "No UUID file found. Please check!"
exit 0
fi
while read VMUUID
do
VMNAME=`xe vm-list uuid=$VMUUID | grep name-label | cut -d":" -f2 | sed 's/^ *//g'`
SNAPUUID=`xe vm-snapshot uuid=$VMUUID new-name-label="SNAPSHOT-$VMNAME-$datum"`
xe template-param-set is-a-template=false ha-always-run=false uuid=$SNAPUUID
xe vm-export vm=$SNAPUUID filename=$backuppath/SNAPSHOT-$VMNAME-$datum.xva
xe vm-uninstall uuid=$SNAPUUID force=true
done <$uuidfile
umount $mountpoint
exit
楽しい! :)