How To Create Hot Backups of MySQL Databases with Percona XtraBackup on Ubuntu server ?

How To Create Hot Backups of MySQL Databases with Percona XtraBackup on Ubuntu server ?

Percona XtraBackup is a free, complete on the internet back-up solution for all editions of Percona Server, MySQL and MariaDB. Percona XtraBackup works on the internet non-blocking, firmly compacted, highly protected back-ups on transnational systems so that programs stay fully available during organized servicing windows. Now get related information How To Create Hot Backups of MySQL Databases with Percona XtraBackup ?

A very common challenge experienced while working with effective data source systems is performing hot backups—that is, creating back-ups without avoiding the data source service or making it read-only. Backups of MySQL must be accurate to get the perfect result, duplicating the information of an effective data source will often result in a duplicate of the data source that is internal unreliable, it will not be useful or it will be missing dealings that happened during the duplicate.

Percona XtraBackup provides :
  • Fast and efficient backups
  • Uninterrupted deal handling during backups
  • Savings on hard drive area and system data transfer usage with better compression
  • Automatic backup verification
  • Higher up-time due to quicker recovery time
  • Instead of the sensible back-ups that resources like mysqldump generate, XtraBackup makes actual back-ups of the data source files. This information will show you how to carry out a full hot back-up of your MySQL or MariaDB data source using Percona XtraBackup. The process of the data source from a back-up is also can be done by the remote location.
Prerequisites :
While following steps you must be:
  • Access to the admin of your database
  • Superuser privileges on an Ubuntu 14.04 system
  • A running MySQL or MariaDB database
Also, to carry out a hot back-up of your data source, your data source program must be using the InnoDB storage engine. This is because XtraBackup is based on the deal log that InnoDB maintains. If your data source is using the MyISAM storage engine, you can still use XtraBackup but the data source will be closed for a brief period towards the end of the back-up.

Storage Engine Status :
If you are uncertain of which storage engine your data source use, you can look it up through a variety of methods. One way is to use the MySQL system to choose the data source in question, then outcome the position of each table.

First, go into the MySQL console:
mysql -u root -p
Here you need to user your mySql Password
Choose the data source that you want to examine. Be sure to alternative your own data source name here
mysql> USE database_name;
Then create its table statuses:
mysql> SHOW TABLE STATUS\G;
Once you are done, keep the console:
mysql> exit
Let's set up Percona XtraBackup.
The simplest way to set up Percona XtraBackup is to use apt-get.
Add the Percona repository key with this command:
sudo apt-key adv --keyserver keys.gnupg.net --recv-keys 1C4CBDCDCD2EFD2A
Run this control to upgrade your apt sources:
sudo apt-get update
Lastly, you can run this control to set up XtraBackup:
sudo apt-get install percona-xtrabackup
XtraBackup comprises mainly of the XtraBackup system, and the innobackupex Perl system, which we will use to make our data source back-ups.

First Time Preparations :
sudo gpasswd -a username mysql
sudo mkdir -p /data/backups
sudo chown -R username: /data
MySQL User :
mysql -u root -p
mysql> CREATE USER 'backupuser'@'localhost' IDENTIFIED BY 'backuppassword';
mysql> GRANT RELOAD, LOCK TABLES, REPLICATION CLIENT ON *.* TO 'backupuser'@'localhost';
mysql> FLUSH PRIVILEGES;
mysql> exit
  • Like
Reactions: HostStud
Author
bhawanisingh
Views
1,746
First release
Last update
Rating
0.00 star(s) 0 ratings
Top