MySQL Series 12 Backup and Recovery

MySQL Series 12 Backup and Recovery

Tutorial Series

MySQL series: Basic concepts of MySQL relational database
MariaDB-server installation of MySQL series
MySQL Series II Multi-Instance Configuration
MySQL Series 3 Basics
MySQL Series 4 SQL Syntax
MySQL series five views, stored functions, stored procedures, triggers
MySQL series 6 users and authorization
MySQL Series 7 MySQL Storage Engine
MySQL Series 8 MySQL Server Variables
MySQL series 9 MySQL query cache and index
MySQL Series 10 MySQL Transaction Isolation to Implement Concurrency Control
MySQL Series 11 Logging
MySQL Series 12 Backup and Recovery
MySQL Series 13 MySQL Replication
MySQL Series 14 MySQL High Availability Implementation
MySQL series 15 MySQL common configuration and performance stress test

1. Backup strategy description

1. Types of backup

Type 1:

  • Hot backup: reading and writing are not affected (MyISAM does not support hot backup, but InnoDB does)
  • Warm backup: only read operations can be performed
  • Cold backup: Offline backup, read and write operations are suspended

Type 2:

  • Physical backup: copy data files for backup, takes up more space and is fast
  • Logical backup: Export data to text files, which takes up less space, is slow, and may lose precision.

Type 3:

  • Full backup: back up all data
  • Incremental backup: only backs up the data that has changed since the last full backup or incremental backup. The backup is faster, but the restoration is more complicated.
  • Differential backup: only backs up the data that has changed since the last full backup. It is slow to backup but easy to restore.

2. Factors to consider for backup

  • How long does the warm standby hold the lock? Data cannot be written in the locked state.
  • To reduce the load caused by backup, you need to schedule backup at an idle time.
  • The backup process takes a long time. When the amount of data is large, it will take a long time. You need to choose a suitable solution.
  • The length of the recovery process, the backup data needs to be tested immediately

3. Backup target

  • Database data, each table space is stored separately
  • Binary logs need to be stored separately from data
  • InnoDB Transaction Log
  • Stored procedures, stored functions, triggers, or event schedulers, etc.
  • Server configuration file: /etc/my.cnf

4. Backup tools

  • mysqldump工具: a logical backup tool, applicable to warm backup of all storage engines; supports full or partial backup; supports hot backup for InnoDB storage engine; stores schema (database definition) and data together.
usage:
           shell> mysqldump [options] db_name [tbl_name ...]
           shell> mysqldump [options] --databases db_name ...
           shell> mysqldump [options] --all-databases
Options:
	-A: Back up all libraries -B db_name1,[db_name2,...]: Back up the specified library -E: Back up all related event schedulers
	-R: Back up all stored procedures and stored functions --triggers: Back up table-related triggers, enabled by default, use --skip-triggers to not back up triggers --master-data={1|2}:
		 1: Add a record before the backed up data as the CHANGE MASTER TO statement, non-comment, and the default value is 1 if not specified.
		 2: CHANGE MASTER TO statement recorded as a comment. Note: This option automatically turns off the --lock-tables feature and automatically turns on the --lock-all-tables feature (unless --single-transaction is turned on)
	-F: Roll the log before backup. After locking the table, execute the flush logs command to generate a new binary log file. When used with -A, it will cause multiple database refreshes. If you perform dump and log refresh at the same time, you should use --flush-logs and -x, --master-data or --single-transaction at the same time. In this case, only refresh once. Recommendation: Use with -x, --master-data or --single-transaction. --compact Remove comments, suitable for debugging, not used in production. -d: Only back up the table structure. -t: Only back up the data, not the create table.
	-n: Do not back up create database, can be overwritten by -A or -B --flush-privileges: Refresh the authorization table before backup, required for backing up MySQL database or related -f: Ignore SQL errors and continue execution --hex-blob: Use hexadecimal notation to dump binary columns (for example, "abc" becomes 0x616263), affected data types include BINARY, VARBINARY, BLOB, BIT
	-q: Do not cache queries, output directly, speed up backup

MyISAM backup options: warm backup is supported; hot backup is not supported, so you must first lock the database to be backed up and then start the backup operation

-x, --lock-all-tables: Add a global read lock to lock all tables in all databases. Adding the --single-transaction or --lock-tables option will disable this option. Note: When the amount of data is large, it may cause a long period of inability to access the database concurrently.

-l, --lock-tables: For each database that needs to be backed up, lock all its tables before starting the backup. The default is on. The --skip-lock-tables option can be disabled. Backing up multiple MyISAM libraries may cause data inconsistency.

InnoDB backup options: hot backup is supported, warm backup is available but not recommended

--single-transaction: This option is recommended for Innodb and not for MyISAM. This option will execute the START TRANSACTION command to start the transaction before starting the backup. This option creates a consistent snapshot by dumping all tables in a single transaction. Applies only to tables stored in storage engines that support multiversioning (currently only InnoDB does); the dump is not guaranteed to be consistent with other storage engines.

When performing a single transaction dump, to ensure a valid dump file (correct table contents and binary log position), you need to ensure that no other connections use the following statements: ALTER TABLE, DROP TABLE, RENAME TABLE, TRUNCATE TABLE

This option and the --lock-tables option (which implicitly commits pending transactions) are mutually exclusive. When backing up large tables, it is recommended to use the --single-transaction option in conjunction with the --quick option.

InnoDB recommends the following backup strategy:
	mysqldump –uroot –A –F –E –R --single-transaction --master-data=1 --flush-privileges --triggers --hex-blob >$BACKUP/fullbak_$BACKUP_TIME.sql

MyISAM recommended backup strategy:
	mysqldump –uroot –A –F –E –R –x --master-data=1 --flush-privileges --triggers --hex-blob >$BACKUP/fullbak_$BACKUP_TIME.sql
  • xtrabackup tool: A tool provided by Percona to support hot backup (physical backup) of InnoDB, supporting full backup and incremental backup

The MySQL database backup tool provided by Percona is an open source tool that can perform hot backup of InnoDB and XtraDB databases.

xtrabackup is used to back up InnoDB tables, but not non-InnoDB tables;

The innobackupex script is used to back up non-InnoDB tables. It also calls the xtrabackup command to back up InnoDB tables and sends commands to interact with MySQL Server, such as adding a global read lock (FTWRL) and obtaining a location (SHOW SLAVE STATUS). That is, innobackupex is implemented as a layer of encapsulation on top of xtrabackup;

Although MyISAM tables are generally not used at present, only the system tables under the MySQL database are MyISAM, so the backup is basically performed through the innobackupex command;

After xtrabackup version is upgraded to 2.4, there are relatively large changes compared with the previous 2.1: all innobackupex functions are integrated into xtrabackup, with only one binary program. In addition, for compatibility considerations, innobackupex is used as a soft link of xtrabackup, that is, xtrabackup now supports non-Innodb table backup, and Innobackupex will be removed in the next version. It is recommended to replace innobackupex with xtrabackup.

When using innobakupex for backup, it will call xtrabackup to back up all InnoDB tables, copy all related files about table structure definition (.frm), as well as related files of MyISAM, MERGE, CSV and ARCHIVE tables, and also back up files related to triggers and database configuration information. These files will be saved in a directory named after the time. During the backup, innobackupex will also create the following files in the backup directory:

  • 1) xtrabackup_checkpoints: backup type (such as full or incremental), backup status (such as whether it is already in prepared state) and LSN (log sequence number) range information. Each InnoDB page (usually 16k in size) contains a log sequence number, i.e. LSN. LSN is the system version number of the entire database system. The LSN associated with each page can indicate how the page has been changed recently.
  • 2) xtrabackup_binlog_info: The binary log file currently in use by the MySQL server and the location of the binary log events up to the moment of backup;
  • 3) xtrabackup_info: related information when the innobackupex tool is executed;
  • 4) backup-my.cnf: configuration option information used by the backup command;
  • 5) xtrabackup_logfile: log file generated by backup.
usage:
	innobackupex --user=DBUSER --password=DBUSERPASS /path/to/BACKUP-DIR/
Options:
    --user: This option indicates the backup account --password: This option indicates the backup password --host: This option indicates the address of the backup database --databases: The parameter accepted by this option is the data name. If you want to specify multiple databases, they need to be separated by spaces; for example: "xtra_test dba_test". At the same time, when specifying a database, you can also specify only a table in it. For example: "mydatabase.mytable". This option is invalid for innodb engine tables, but all innodb tables will be backed up. --defaults-file: This option specifies the file from which to read the MySQL configuration. It must be placed in the first option position on the command line. --incremental: This option means creating an incremental backup. You need to specify --incremental-basedir
    --incremental-basedir: This option specifies the directory of the previous full backup or incremental backup, and is used together with --incremental. --incremental-dir: This option indicates the directory of the incremental backup during restore. --include=name: Specify the table name, format: databasename.tablename
    --apply-log: Generally, after the backup is completed, the data cannot be used for recovery operations because the backed-up data may contain transactions that have not yet been committed or transactions that have been committed but not yet synchronized to the data file. Therefore, the data file is still in an inconsistent state at this time. This option is used to make the data file consistent by rolling back uncommitted transactions and synchronizing committed transactions to the data file. --use-memory: This option is used together with the --apply-log option. When preparing a backup, the memory size allocated by xtrabackup for crash recovery is in bytes. Also available (1MB, 1M, 1G, 1GB), 1G is recommended
	--export: Indicates that a separate table can be exported and then imported into other MySQLs. --redo-only: This option is used when preparing a base full backup and merging incremental backups into it. --copy-back: When restoring data, copy the backup data file to the datadir of the MySQL server.
	--move-back: This option is similar to --copy-back, the only difference is that it does not copy the file, but moves the file to the destination. This option removes the backup file and should be used with caution. Usage scenario: There is not enough disk space to keep both data files and backup copies

Notice:

1) The datadir directory must be empty. The --copy-backup option does not override unless the innobackupex --force-non-empty-directorires option is specified;

2) Before restoring, you must shut down the MySQL instance. You cannot restore a running instance to the datadir directory.

3) Since the file attributes will be retained, in most cases you need to change the file owner to mysql before starting the instance, chown -R mysql:mysql /data/mysqldb

  • mysqlbackup tool: hot backup, MySQL Enterprise Edition component
  • mysqlhotcopy tool: almost cold backup, only for MyISAM storage engine
  • LVM snapshot backup: almost hot backup, need to lock the table before taking the snapshot
  • Backup using archive copy tools such as tar + cp: Complete cold backup

2. Backup plan

1. cp + tar == physical cold backup

Pack and compress the data directory for backup. This requires service shutdown and is not recommended.

1) Backup:

~]# mkdir /backup
~]# systemctl stop mariadb #Stop service~]# tar Jcf /backup/mariadb_all.tar.xz /var/lib/mysql/ #Package and compress backup]# systemctl start mariadb

2) Restore:

~]# systemctl stop mariadb
~]# rm /var/lib/mysql/ -rf #Delete the damaged library~]# cd /backup/
backup]# tar xf mariadb_all.tar.xz #Unzip the packaged database file backup]# cp -av var/lib/mysql/ /var/lib/ #Restore backup]# systemctl start mariadb #Start the service and restore successfully

2. LVM snapshot + binlog == almost physical hot standby + incremental backup

​1) Backup: The database directory needs to be stored on the lvm logical volume

~]# systemctl stop mariadb
~]# rm /var/lib/mysql/ -rf #Delete the damaged library~]# cd /backup/
backup]# tar xf mariadb_all.tar.xz #Unzip the packaged database file backup]# cp -av var/lib/mysql/ /var/lib/ #Restore backup]# systemctl start mariadb #Start the service and restore successfully
Prepare the lvm environment:
~]# pvcreate /dev/sda5
~]# vgcreate vg0 /dev/sda5
~]# lvcreate -n lv_data -L 10G vg0
~]# lvcreate -n lv_binlog -L 10G vg0
~]# mkfs.xfs /dev/vg0/lv_data
~]# mkfs.xfs /dev/vg0/lv_binlog
~]# mkdir -pv /data/{mysqldb,binlog} #Create data directory and binary log storage directory~]# chown -R mysql:mysql /data/
~]# vim /etc/fstab
	UUID=4e3d726a-d420-4c1e-812b-da315012ba86 /data/mysqldb xfs defaults 0 0
	UUID=6dd98866-769f-4369-8738-291fbcc94ca1 /data/binlog xfs defaults 0 0
Configure the database and simulate the generation of large amounts of data:
~]# yum install mariadb-server -y
~]# vim /etc/my.cnf
    [mysqld]
    datadir = /data/mysqldb #Specify the database storage path log_bin = /data/binlog/mariadb-bin #Enable binary logging and store it in the specified path innodb_file_per_table = ON #Enable a separate tablespace for each table~]# systemctl start mariadb
~]# mysql #Connect to the database. The username and password are omitted here. The following are the same. MariaDB [(none)]> CREATE DATABASE school; #Create a test library MariaDB [(none)]> use school
MariaDB [school]> CREATE TABLE testtb (id int auto_increment primary key,name char(30),age int default 20); #Create a data table MariaDB [school]> DELIMITER // #Change the statement terminator to “//”
MariaDB [school]> CREATE PROCEDURE pro_testtb() #Write a stored procedure to generate 100,000 records for testing-> BEGIN
    -> declare i int;
    -> set i = 1;
    -> while i < 100000
    -> do INSERT INTO testtb(name,age) VALUES (CONCAT('testuser',i),i);
    -> SET i = i + 1;
    -> END while;
    -> END//
MariaDB [school]> DELIMITER ; #Remember to change the statement terminator back MariaDB [school]> CALL pro_testtb; #Call the stored procedure MariaDB [school]> SELECT COUNT(*) FROM testtb; #Check that there are 100,000 records in the table +----------+
| COUNT(*) |
+----------+
| 99999 |
+----------+
Start backup:
MariaDB [school]> FLUSH TABLES WITH READ LOCK; #Remember to lock the table before backing up to prevent users from continuing to write MariaDB [school]> FLUSH LOGS; #Scroll the binary log MariaDB [school]> SHOW MASTER LOGS; #Check the location of the binary log +--------------------+-----------+
| Log_name | File_size |
+--------------------+-----------+
| mariadb-bin.000001 | 30334 |
| mariadb-bin.000002 | 1038814 |
| mariadb-bin.000003 | 29178309 |
| mariadb-bin.000004 | 528 |
| mariadb-bin.000005 | 245 | #Record this output, we will need it later+--------------------+-----------+
~]# lvcreate -L 5G -n lv_mysql_snap -s -pr /dev/vg0/lv_data #You need to open another terminal to create a snapshot. Do not exit the mysql terminalMariaDB [school]> UNLOCK TABLES; #Unlock the snapshot as soon as possible after creating it. Be careful of user complaints~]# mount -o nouuid,norecovery /dev/vg0/lv_mysql_snap /mnt/ #Mount the snapshot to /mnt
~]# cp -av /mnt/ /backup #Copy data to the backup directory~]# umount /mnt/
~]# lvremove /dev/vg0/lv_mysql_snap #After the copy is completed, delete the snapshot immediately to affect the server performance. The full backup is now complete~
Some more data:
MariaDB [school]> CALL pro_testtb; #Let's simulate inserting 100,000 records MariaDB [school]> SELECT COUNT(*) FROM testtb;
+----------+
| COUNT(*) |
+----------+
| 199998 | #Now there are 200,000 records+----------+

2) Restore:

Simulate database corruption:
~]# rm -rf /data/mysqldb/* #Server crashes, no more BB, just clear the library~]# systemctl stop mariadb #Stop service
Start restoration:
~]# cp -av /backup/* /data/mysqldb/ #cp the backed up files to the corresponding library directory. Add skip_networking under [mysqld] in /etc/my.cnf to prohibit users from using the database and prevent data from being written during the recovery process. ~]# systemctl start mariadb #Start the service ~]# ls -1 /data/binlog/ #View the number of binary log files mariadb-bin.000001
    mariadb-bin.000002
    mariadb-bin.000003
    mariadb-bin.000004
    mariadb-bin.000005
    mariadb-bin.000006
    mariadb-bin.index
~]# mysqlbinlog --start-position=245 /data/binlog/mariadb-bin.000005 > binlog.sql #Data after the full backup time point~]# mysqlbinlog /data/binlog/mariadb-bin.000006 >> binlog.sql #Append all subsequent data to the same sql file~]# mysql < binlog.sql #Use binary log to restore incrementally from the point of our previous full backup~]# mysql -e 'SELECT COUNT(*) FROM school.testtb' #Check it out, 200,000 records are all there, nice
+----------+
| COUNT(*) |
+----------+
| 199998 |
+----------+
Go to /etc/my.cnf and delete skip_networking under [mysqld], restart the service, and the restoration is complete.

3. mysqldump + InnoDB + binlog = full logical hot standby + incremental backup

​1) Backup: I will not generate data here, just follow the above environment

~]# mysqldump -A -F -E -R --single-transaction --master-data=2 --flush-privileges > /backup/full-`date +%F-%T`.sql #Full database backup

2) Simulate failure:

MariaDB [(none)]> CREATE DATABASE db1; #Create a database MariaDB [(none)]> CREATE DATABASE db2; #Create another database MariaDB [school]> use school;
MariaDB [school]> DROP TABLE testtb; #Due to an error, our table with 200,000 records was deletedMariaDB [school]> CREATE TABLE students (id INT(4) AUTO_INCREMENT PRIMARY KEY,name CHAR(30),age TINYINT); #Subsequently, other users created other tablesMariaDB [school]> INSERT INTO students(name,age) VALUES ('user1',20); #And also added data

3) Restore:

At this point, we found that a table is missing and needs to be restored urgently. Let's get started. MariaDB [(none)]> FLUSH TABLES WITH READ LOCK; #Lock table MariaDB [(none)]> FLUSH LOGS; #Flush and roll binary log file MariaDB [(none)]> SHOW MASTER LOGS; #View the current log status +--------------------+-----------+
| Log_name | File_size |
+--------------------+-----------+
| mariadb-bin.000001 | 30334 |
| mariadb-bin.000002 | 1038814 |
| mariadb-bin.000003 | 29178309 |
| mariadb-bin.000004 | 528 |
| mariadb-bin.000005 | 29177760 |
| mariadb-bin.000006 | 29177786 |
| mariadb-bin.000007 | 953 |
| mariadb-bin.000008 | 245 |
+--------------------+-----------+
~]# systemctl stop mariadb #Stop service and prepare for repair~]# head -30 /backup/full-2018-06-14-05\:33\:47.sql |grep "CHANGE MASTER"
-- CHANGE MASTER TO MASTER_LOG_FILE='mariadb-bin.000007', MASTER_LOG_POS=245; #Find the log point of the full backup, at 245 of mariadb-bin.000007
~]# ls -1 /data/binlog/
mariadb-bin.000001
mariadb-bin.000002
mariadb-bin.000003
mariadb-bin.000004
mariadb-bin.000005
mariadb-bin.000006
mariadb-bin.000007
mariadb-bin.000008
mariadb-bin.index
~]# mysqlbinlog --start-position=245 /data/binlog/mariadb-bin.000007 > /backup/binlog.sql #Export the binary log after the full backup~]# mysqlbinlog /data/binlog/mariadb-bin.000008 >> /backup/binlog.sql
~]# vim /backup/binlog.sql #Modify the exported sql file and delete the incorrect SQL statement. Delete the line "DROP TABLE `testtb` /* generated by server */"
Import the backup:
~]# rm -rf /data/mysqldb/* #Clear the fault database first~]# vim /etc/my.cnf #Edit the configuration file. Add skip_networking to [mysqld] to prevent users from writing data~]# systemctl start mariadb #Start the service~]# mysql < /backup/full-2018-06-14-05\:33\:47.sql #Import full backup~]# mysql < /backup/binlog.sql #Import incremental backupMariaDB [(none)]> show databases; #Check if our data is successfully restored+--------------------+
| Database |
+--------------------+
| information_schema |
| db1 | #Recovered | db2 | #Recovered | mysql |
| performance_schema |
| school |
| test |
+--------------------+
MariaDB [(none)]> SELECT COUNT(*) FROM school.testtb;
+----------+
| COUNT(*) |
+----------+
| 199999 | #Recovered+----------+
MariaDB [(none)]> SELECT * FROM school.students;
+----+-------+------+
| id | name | age |
+----+-------+------+
| 1 | user1 | 20 | #Recovered+----+-------+------+
So far, the recovery has been completed. Delete skip_networking in the configuration file, restart the service, and you are done~

4. Xtrabackup + InnoDB == Full hot backup + incremental backup

1) Full backup

~]# innobackupex --user=root /backup/ #The password is omitted here

2) Add and delete data

MariaDB [school]> CALL pro_testtb; #Add some dataMariaDB [school]> SELECT COUNT(*) FROM testtb; #Now there are 300,000 records+----------+
| COUNT(*) |
+----------+
| 299998 |
+----------+
MariaDB [school]> INSERT INTO students VALUES (2,'user2',21);
MariaDB [school]> UPDATE students SET age=19 WHERE id=1;
MariaDB [school]> SELECT * FROM students;
+----+-------+------+
| id | name | age |
+----+-------+------+
| 1 | user1 | 19 |
| 2 | user2 | 21 |
+----+-------+------+

3) Incremental backup

~]# mkdir /backup/inc{1,2} #Create an incremental backup directory~]# innobackupex --incremental /backup/inc1/ --incremental-basedir=/backup/2018-06-14_10-44-57/ #Specify incremental backup based on full backup

4) Add and delete data

MariaDB [(none)]> CREATE DATABASE db3; 
MariaDB [(none)]> DROP TABLE school.students; #The table was deleted by mistake MariaDB [(none)]> use school
MariaDB [school]> CALL pro_testtb; #Subsequently, more data will be generatedMariaDB [school]> SELECT COUNT(*) FROM testtb;
+----------+
| COUNT(*) |
+----------+
| 399997 |
+----------+
MariaDB [school]> SELECT * FROM students; #At this point, I found that the students table is gone. What should I do?
ERROR 1146 (42S02): Table 'school.students' doesn't exist

5) Fault occurs

~]# rm -rf /data/mysqldb/* #Clear the data directory before restoring MariaDB [(none)]> show databases; #The database is gone now+--------------------+
| Database |
+--------------------+
| information_schema |
+--------------------+

6) Emergency recovery

To restore full and incremental backups:
: : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : :
Relying on the binary log, restore the latest incremental backup to now:
~]# cat /backup/2018-06-14_10-44-57/xtrabackup_binlog_info #Check the binary log record point during backup mariadb-bin.000011 35740416
~]# ls -1 /data/binlog/ #See where our binary log file is recorded mariadb-bin.000001
mariadb-bin.000002
mariadb-bin.000003
mariadb-bin.000004
mariadb-bin.000005
mariadb-bin.000006
mariadb-bin.000007
mariadb-bin.000008
mariadb-bin.000009
mariadb-bin.000010
mariadb-bin.000011
mariadb-bin.000012
mariadb-bin.000013
mariadb-bin.index
~]# mysqlbinlog --start-position=35740416 /data/binlog/mariadb-bin.000011 > /backup/binlog.sql #Export the binary log data after the latest incremental backup~]# mysqlbinlog /data/binlog/mariadb-bin.000012 >> /backup/binlog.sql
~]# mysqlbinlog /data/binlog/mariadb-bin.000013 >> /backup/binlog.sql
Edit the /backup/binlog.sql file and delete "DROP TABLE `school`.`students` /* generated by server */" to undo the accidental deletion. MariaDB [(none)]> SET sql_log_bin=0; #Temporarily turn off the binary log function. MariaDB [(none)]> source /backup/binlog.sql #Import the latest data after the incremental backup to check whether the data has been restored completely. Delete skip_networking in my.cnf and restart the service. Now the data has been restored to the latest state.

5. Use Xtrabackup to implement single table backup

1) Back up a single table

~]# innobackupex --include="testdb.testlog" /backup #Backup table data~]# mysql -e 'SHOW CREATE TABLE testdb.testlog' > /backup/desc_testdb_testlog.sql #Backup table space~]# mysql -e 'DROP TABLE testdb.testlog' #Simulate failure and delete the testlog table

2) Restore a single table

~]# innobackupex --apply-log --export /backup/2018-06-14_17-47-02/ #Arrange table data~]# vim /backup/desc_testdb_testlog.sql #Edit the statement to create the tablespace and delete the following fields Table Create Table
    testlog
~]# mysql testdb < /backup/desc_testdb_testlog.sql #Import tablespace~]# mysql testdb -e 'DESC testlog' #Check whether the import is successful+-------+----------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+----------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| name | char(30) | YES | | NULL | |
| age | int(11) | YES | | 20 | |
+-------+----------+------+-----+---------+----------------+
~]# mysql -e 'ALTER TABLE testdb.testlog DISCARD TABLESPACE' # Clear tablespace~]# cd /backup/2018-06-14_17-47-02/testdb/
testdb]# cp testlog.cfg testlog.exp testlog.ibd /var/lib/mysql/testdb/ #Copy the table data to the library directory~]# chown -R mysql:mysql /var/lib/mysql/testdb/ #Modify the owner and group~]# mysql -e 'ALTER TABLE testdb.testlog IMPORT TABLESPACE' #Import tablespace

Summarize

This article ends here. I hope it can be of some help to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Summary of MySQL logical backup and recovery testing
  • Detailed explanation of MySQL backup and recovery practice of mysqlbackup
  • Implementation of MySQL5.7 mysqldump backup and recovery
  • A brief analysis of MySQL backup and recovery
  • Detailed explanation of mysql backup and recovery

<<:  The specific implementation of div not automatically wrapping and forcing not wrapping in html

>>:  Detailed explanation of fetch network request encapsulation example

Recommend

Learn the basics of nginx

Table of contents 1. What is nginx? 2. What can n...

Markup validation for doctype

But recently I found that using this method will c...

Summary of 10 advanced tips for Vue Router

Preface Vue Router is the official routing manage...

Case study of dynamic data binding of this.$set in Vue

I feel that the explanation of this.$set on the I...

Solution to Chinese garbled characters when operating MySQL database in CMD

I searched on Baidu. . Some people say to use the...

Install Docker for Windows on Windows 10 Home Edition

0. Background Hardware: Xiaomi Notebook Air 13/In...

Detailed installation and configuration of MySql on Mac

1. Download and install Download the community ed...

Detailed explanation of the new array methods in JavaScript es6

Table of contents 1. forEach() 2. arr.filter() 3....

Linux uses join -a1 to merge two files

To merge the following two files, merge them toge...

How to connect to virtual machine MySQL using VScode in window environment

1. Virtual Machine Side 1. Find the mysql configu...