Two ways to correctly clean up mysql binlog logs

Two ways to correctly clean up mysql binlog logs

mysql correctly cleans up binlog logs

Preface:

The binlog in MySQL records the changes in the data in the database, which facilitates the time-based and location-based recovery of the data. However, the binlog will also grow larger and take up a lot of disk space. Therefore, it is necessary to use the correct and safe method to clean up some useless logs.

[Method 1] Manually clean up binlog

Preparation before cleaning:

① Check which binlog file the master and slave are using

show master status\G 
show slave status\G

② Before deleting the binlog log, back up the binlog log first, just in case

Start deleting binlog:

purge master logs before'2016-09-01 17:20:00'; //Delete the binlog log files in the log index before the specified date

or

purge master logs to'mysql-bin.000022'; //Delete the binlog log file in the log index of the specified log file

Notice:

The time and file name must not be written incorrectly, especially the year in the time and the serial number in the file name, to prevent the binlog in use from being accidentally deleted! ! !

Never delete a binlog that is in use! ! !

Using this syntax will delete the corresponding files and the corresponding paths in mysql-bin.index.

[Method 2] Set the binlog expiration time to enable the system to automatically delete the binlog file

mysql> show variables like 'expire_logs_days'; 
+------------------+-------+ 
| Variable_name | Value | 
+------------------+-------+ 
| expire_logs_days | 0 | 
+------------------+-------+ 
mysql> set global expire_logs_days = 30; #Set the number of days for binlog to expire

Notice:

The expiration time should be set appropriately. For master-slave replication, the expiration time should be determined based on the delay of the slave database to avoid the master database binlog being deleted due to expiration before being transferred to the slave database, resulting in inconsistency between the master and the slave! ! !

Thank you for reading, I hope it can help you, thank you for your support of this site!

You may also be interested in:
  • Detailed explanation of MySQL database binlog cleanup command
  • 3 common errors in reading MySQL Binlog logs
  • How to view mysql binlog (binary log)
  • Explain MySQL's binlog log and how to use binlog log to recover data
  • Summary of Binlog usage of MySQL database (must read)
  • How to automatically clean up MySQL binlog logs
  • Teach you to automatically restore the log file (binlog) of the MySQL database
  • [MySQL binlog] How to thoroughly parse binlog in Mixed log format in MySQL
  • Detailed explanation of mysql binlog binary log
  • Parsing MySQL binlog

<<:  How to generate Vue user interface by dragging and dropping

>>:  Docker container introduction

Recommend

Solution to MySQL 8.0 cannot start 3534

MySQL 8.0 service cannot be started Recently enco...

Detailed explanation of firewall rule settings and commands (whitelist settings)

1. Set firewall rules Example 1: Expose port 8080...

Detailed explanation of the update command for software (library) under Linux

When installing packages on an Ubuntu server, you...

Vue implements 3 ways to switch tabs and switch to maintain data status

3 ways to implement tab switching in Vue 1. v-sho...

Summary of naming conventions for HTML and CSS

CSS naming rules header: header Content: content/c...

Detailed explanation of the Docker deployment tutorial for Jenkins beginners

This article deploys Jenkins+Maven+SVN+Tomcat thr...

How to use nodejs to write a data table entity class generation tool for C#

Although Microsoft provides T4 templates, I find ...

React new version life cycle hook function and usage detailed explanation

Compared with the old life cycle Three hooks are ...

MySQL account password modification method (summary)

Preface: In the daily use of the database, it is ...

Solution to the problem of invalid line-height setting in CSS

About the invalid line-height setting in CSS Let&...

Explanation of Truncate Table usage

TRUNCATE TABLE Deletes all rows in a table withou...

Summary of Kubernetes's application areas

Kubernetes is the leader in the container orchest...

The iframe frame sets the white background to transparent in IE browser

Recently, I need to frequently use iframe to draw ...

Introduction and use of Javascript generator

What is a generator? A generator is some code tha...

CSS3 new layout: flex detailed explanation

Flex Basic Concepts Flex layout (flex is the abbr...