Detailed explanation of MySQL database binlog cleanup command

Detailed explanation of MySQL database binlog cleanup command

Overview

Today I will mainly share how to correctly delete binlog logs from MySQL database. Be careful not to force the use of rm command to clear them. Otherwise, mysq-bin.index will be disordered, which will eventually lead to the failure of the later expire-log-days configuration item.

1. View binlog log

mysql> show binary logs; 


2. Delete all log files before a certain log file

purge binary logs to 'mysql-bin.000035'; 


3. Clean up binlog logs before 2019-09-09 13:00:00

PURGE MASTER LOGS BEFORE '2019-09-09 13:00:00'; 


4. Clean up binlog logs from 3 days ago

PURGE MASTER LOGS BEFORE DATE_SUB(NOW( ), INTERVAL 3 DAY); 
--BEFORE, the date argument of the variable can be in the format 'YYYY-MM-DD hh:mm:ss'. The cleanup here refers to the files from now - 3243600s ago, which is the time when this file was last updated.
--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! ! !
--Do not delete the binlog in use! ! !

5. Reset all logs

reset master; 


6. Manually switch binlog log

flush logs 
--or flush binary logs 


When you delete all binlogs one day and the database does not generate new logs, you can use manual switching to generate them.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • 3 common errors in reading MySQL Binlog logs
  • How to view mysql binlog (binary log)
  • Two ways to correctly clean up mysql binlog logs
  • 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

<<:  Detailed explanation of primitive values ​​and reference values ​​in ECMAScript

>>:  How to use the Linux seq command

Recommend

CSS3 realizes draggable Rubik's Cube 3D effect

Mainly used knowledge points: •css3 3d transforma...

How to set up URL link in Nginx server

For websites with an architecture like LNMP, they...

43 Web Design Mistakes Web Designers Should Watch Out For

This is an article about website usability. The a...

MySQL 8.0.25 installation and configuration tutorial under Linux

The latest tutorial for installing MySQL 8.0.25 o...

CSS pixels and solutions to different mobile screen adaptation issues

Pixel Resolution What we usually call monitor res...

Practice of using Tinymce rich text to customize toolbar buttons in Vue

Table of contents Install tinymce, tinymce ts, ti...

HTML table tag tutorial (25): vertical alignment attribute VALIGN

In the vertical direction, you can set the row al...

How to Run a Command at a Specific Time in Linux

The other day I was using rsync to transfer a lar...

How to use Docker+DockerCompose to encapsulate web applications

Table of contents Technology Stack Backend build ...

Why the table file size remains unchanged after deleting data in MySQL

For databases that have been running for a long t...

Write a mysql data backup script using shell

Ideas It's actually very simple Write a shell...

Windows DNS server exposed "worm-level" vulnerability, has existed for 17 years

Vulnerability Introduction The SigRed vulnerabili...

How to run .sh files in Linux system

There are two ways to run .sh files in Linux syst...

Steps to repair grub.cfg file corruption in Linux system

Table of contents 1. Introduction to grub.cfg fil...