9 Steps to Implement Offline Backup at Azure IaaS: Backup a MySQL to Azure Storage
Join the DZone community and get the full member experience.
Join For FreeA good backup is probably something you will thank for when s%$t hits the fan.
If you chose MySQL as your data infrastructure and Microsoft Azure as your cloud infrastructure, you will probably thank this procedure (that I actually turned into a a script).
Chosen Products
Our first task is choosing the backup and automation products. I selected the following two:
- Percona XtraBackup: a leading backup product by Percona. The product creates an hot backup of the database that is equivalent to disk copy. This method is much faster to backup and recover than mysqldump. It also support increment backup.
- Azure SDK Tools Xplat: a node.js based SDK that enables command line interface to the various Azure services including Azure Storage.
Backup Implementation Guide
- Install Percona XtraBackupsudo wget http://www.percona.com/redir/downloads/XtraBackup/XtraBackup-2.2.3/binary/debian/precise/x86_64/percona-xtrabackup_2.2.3-4982-1.precise_amd64.deb sudo dpkg -i percona-xtrabackup_2.2.3-4982-1.precise_amd64.deb apt-get update sudo apt-get install -f sudo dpkg -i percona-xtrabackup_2.2.3-4982-1.precise_amd64.deb
- Install Azure SDK Tools Xplatsudo apt-get update sudo apt-get -y install nodejs python-software-properties sudo add-apt-repository ppa:chris-lea/node.js sudo wget https://npmjs.org/install.sh --no-check-certificate | sudo sh sudo apt-get install npm sudo npm config set registry http://registry.npmjs.org/ sudo npm install -g azure-cli
- Install a backup procedure
- Get a publish settings file from Azure (can be done from the console).
- Get account name and the matching base64 key from the Azure console.
- Import the publish setting filesudo azure account import /opt/mysqlbackup/mysqlbackup.publishsettings
- Create a Storage Container sudo azure storage container create --container container_name -a account_name -k base64_account_key
- Run a full backup and prepare it twice to make it ready for recovery sudo xtrabackup --backup sudo xtrabackup --prepare sudo xtrabackup --prepare
- Add the frm files and mysql database to your backup sudo chmod -R +r /var/lib/mysql/ sudo cp -R /var/lib/mysql/myql/* /mnt/backup/mysql/ sudo cp -R /var/lib/mysql/yourdb/*.frm /mnt/backup/yourdb/
- Tar the files into a unique daily name_now=$(date +"%Y_%m_%d") _file="/mnt/backup/mysqlbackup$_now.tar.gz" tar cvzf "$_file" /mnt/datadrive/mysqlbackup/
- Copy the folder to Azure Storage using
- azure storage blob upload -f "$_file" -q --container container_name -a account_name -k base64_account_key
- Create a cron that will run it daily: > sudo cron -e * 0 * * * /opt/mysqlbackup/daily.backup.sh >/dev/null 2>&1
- Bring back the files from the Azure storage to /mnt/backup/ sudo cd /mnt/backup/ sudo azure storage blob download --container container_name -a account_name -k base64_account_key -b $file_name
- Uncompress the files sudo tar xvfz $file_name
- Copy the files to your data folder (/var/lib/mysql) after shutting down the MySQL sudo service mysql stop sudo rsync -avrP /mnt/backup/ /var/lib/mysql/
- Verify the folder permissions sudo chown -R mysql:mysql /var/lib/mysql
- Restart the MySQL and verify everything is working. sudo service mysql start
Bottom Line
It may be tough. It may be resource and time consuming. However, you must have good recovery process to keep your a$$...
Published at DZone with permission of Moshe Kaplan, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
HashMap Performance Improvements in Java 8
-
File Upload Security and Malware Protection
-
Which Is Better for IoT: Azure RTOS or FreeRTOS?
-
How to Load Cypress Chrome Extension
Comments