Mysqldump is used for logical backup in MySQL. Although it is not fast, it is very flexible and has many functions. It is definitely a powerful tool when used flexibly. First, let's think about a question: why does MySQL need to be backed up? The main reason is data security. For example, if the main database crashes and the data is accidentally deleted, a full backup is very important. Should full backup be performed from the primary database or the secondary database? 1: From the main library The main database is more important, but in fact, the backup will not affect the database mysqldump --host= --user= --password= --single-transaction --master-data=1 --flush-logs --databases >~/db.log The --single-transaction parameter enables consistent reading without locking the table, which means that data updates are not affected during backup.
Because consistent reading can guarantee the location of the coordinates point, even if the backup time is long, the correct synchronization location point can be obtained.
The --master-data parameter is also very important. The exported statements will contain the CHANGE MASTER TO statement, including the binary file and location point synchronized to the backup statement.
--flush-logs will force the regeneration of a new binary file, which will make recovery easier. 2: From the secondary library It feels safer to back up from the secondary library. mysqldump --host=--user= --password= --dump-slave=1 --flush-logs --apply-slave-statements --include-master-host-port --databases >~/db.log; The --dump-slave and --master-data parameters are very similar:
Remember that it gets the bin log coordinates of the primary library (not the backup library)
The dumped statement will include — Position to start replication or point-in-time recovery from. --apply-slave-statements will automatically include the start and stop slave statements in the dump statement. --include-master-host-port includes the connection information of the master library. One thing must be remembered, even with the --single-transaction statement, --dump-slave will suspend MySQL synchronization, that is, the data in the backup database lags behind the main database, so the general automated script will remove the backup database first when backing up.
3: How to perform point-in-time recovery I haven't tried it in practice. First, restore based on the most recent full backup, and then import subsequent binlog files (if these files are still there), so it is best to back up the binlog statements in the secondary database as well. If the data is deleted by mistake, import the binlog statements from the backup point (--flush-logs takes effect) to this morning, or find a safe binlog location to restore it. As for how to skip "dangerous statements", it is more difficult to control. The above is the details of how to use mysqldump for full and point-in-time backup. For more information about mysqldump for full and point-in-time backup, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to reset the root password in Linux mysql-5.6
>>: Eight ways to implement communication in Vue
Temporary tables and memory tables A memory table...
Related articles: 9 practical tips for creating we...
1. First of all, we need to distinguish between t...
English: A link tag will automatically complete h...
I followed the tutorial on W3school. I think the t...
Table of contents 1. Introduce according to the o...
Enable remote access to MySQL By default, MySQL u...
Table of contents 1. Animated Christmas Tree Made...
This article is mysql database Question 1 Import ...
Database modification or deletion operations may ...
Preface Vue (pronounced /vjuː/, similar to view) ...
Let's take a look at the code file structure ...
Select and change: click to display the current v...
1. In Windows system, many software installations...
Windows 10 1903 is the latest version of the Wind...