Due to some of its own characteristics (locking tables, essentially backing up insert scripts or text, and not supporting differential backup), mysqldump backup is not suitable for situations with high real-time requirements. Based on the principle of putting the functions in place first and then going into the details, we roughly implemented a backup and restore without going into the details. There are many articles about xtrabackup on the Internet. Due to different environments, some of them require configuration of xtrabackup configuration files. innobackupex backup The versions of xtrabackup and MySQL are as follows Full backup Copy the code as follows: innobackupex --defaults-file=/etc/my.cnf --user=root --password=root --socket=/var/lib/mysql/mysql.sock /data/backup illustrate: 1.--defaults-file=/etc/my.cnf file must be at the front As shown in the screenshot, the full backup is completed As shown in the screenshot, a full backup will create a file named with a date (year-month-day-hour-minute-second, yyyy-MM-dd_hh-mm-ss). The memory generated by the full backup is actually a copy of the data files of the backed up database plus some information generated during the backup. For example, xtrabackup_checkpoints is some information about the current full backup. This information is very important for differential backups. Differential backup The reason why differential backup can achieve differences is that it relies on full backup. It is a differential backup after full backup based on full backup. As shown in the screenshot, differential backup is completed If the specified full backup file is incorrect or no full backup file is specified during differential backup, xtrabackup will prompt that the xtrabackup_checkpoints file cannot be found. innobackupex restore Preparation 1. Restore the full backup, that is, the full backup application (--apply-log) log innobackupex --defaults-file=/etc/my.cnf --apply-log --redo-only --socket=/var/lib/mysql/mysql.sock /data/backup/2017-06-22_13-40-29 2. Apply incremental backups to full backups separately innobackupex --defaults-file=/etc/my.cnf --apply-log --redo-only --socket=/var/lib/mysql/mysql.sock --incremental /data/backup/2017-06-22_13-40-29 --incremental-basedir=/data/backup/2017-06-22_13-41-48 If there are multiple differential backups, apply the differential backups to the full backup separately. Recovery Phase 1. After all the differential backups are applied to the full backup, copy the restored differential backup to the original data directory. By default, if there are files in the data path, the copy fails and the files in the data file path need to be cleared. 2. Start the MySQL service Start the mysql service and find that the startup fails Take a look at the error log (startup error information). The default error log installed by mysql5.7yum is located in /var/log/mysqld.log, and it will not scroll by default, which means that all error messages are recorded in this file. After the data file is restored, you need to grant read and write permissions to the data file path. Here, directly authorize the data file path 777, chmod -R 777 /var/lib/mysql I have just started working on xtrabackupex, so there are still a lot of questions left. I will verify them one by one when I have time. 1. How to implement the backup and restore of a single database (table)? After all, in the actual environment, the frequency and method (backup plan) of each database backup are different? 2. How to use full backup + differential backup and then combine binary logs to perform time point-based restore? 3. How to verify the validity of backup files? The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Gitlab practical tutorial uses git config for related configuration operations
>>: Sample code for highlighting search keywords in WeChat mini program
1. Write a simple Java program public class tests...
The problem of resetting the password for Zabbix ...
MySQL escape Escape means the original semantics ...
Due to the limitation of CPU permissions, communi...
Preface The <router-link> tag is a great to...
This article describes MySQL multi-table query wi...
1. What is SQL injection? Sql injection is an att...
Table of contents cycle for for-in for-of while d...
1. MIME: Multipurpose Internet Mail Extensions Th...
1. Why do we need to divide tables and partitions...
When we make a form, we often set a submit button ...
Background - Online Alert An online server issued...
About JS, CSS CSS: Stylesheet at the top Avoid CS...
Syntax composition: 1 Annotation information 2 Co...
The bash history command in Linux system helps to...