私は完全なBASH初心者であり、このスクリプトが機能していることを確認する必要があります。 Azure Blob StorageからEvenstoreバックアップを復元する必要があります。残念ながら動作しません。
ShellCheckで実行すると、次のようになります。
Line 14:
export AZURE_STORAGE_KEY=<Insert key>
^-- SC1009 (info): The mentioned syntax error was in this simple command.
^-- SC1073 (error): Couldn't parse this variable assignment. Fix to allow more checks.
^-- SC1072 (error): Fix any mentioned problems and try again.
実際に実行してみると次のようになります。
restore_eventstore.sh: line 14: syntax error near unexpected token `newline'
restore_eventstore.sh: line 14: `export AZURE_STORAGE_KEY=<Insert key>'
これらのエラーを検索しましたが、私のケースに答えが見つかりませんでした。助けてくれてありがとう。完全なスクリプトは次のとおりです。
#!/bin/bash
# Needs azure cli to work.
# Install command: curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
backup_name=$1
if [ -z "$backup_name" ]
then
echo "Must supply an file to use in the restore"
exit
fi
export AZURE_STORAGE_ACCOUNT=stoclbackups
export AZURE_STORAGE_KEY=<Insert key>
echo "Downloading backup $backup_name from blob storage"
az storage blob download --container-name node1backups --name $backup_name --file $backup_name
if [ ! -s "$backup_name" ]
then
echo "Failed to download the backup file $backup_name"
exit
fi
echo "Stopping the eventstore service"
systemctl stop eventstore
if [ -d eventstore_backup ]
then
echo "Removing old local eventstore backup"
rm -rf eventstore_backup
fi
echo "Doing an backup of the current db to eventstore_backup"
mkdir eventstore_backup
cp -r db/* eventstore_backup
echo "Removing the old data from eventstore db directory"
rm -rf db/*
echo "Unpacking the backup $backup_name into the eventstore db directory"
tar -zvxf $backup_name -C db/
echo "Truncate the eventstore data to the latest chaser checkpoint"
cp db/chaser.chk db/truncate.chk
echo "Restore is complete. Start the eventstore service with: sudo systemctl start eventstore"
ベストアンサー1
使用される値は、を表すプレースホルダAZURE_STORAGE_KEY
テキスト文字列です<Insert Key>
。これをAzure Storageアカウントの実際のキーで置き換える必要があります。