Summary of methods for cleaning Mysql general_log

Summary of methods for cleaning Mysql general_log

Method 1:

SET GLOBAL general_log = 'OFF';
RENAME TABLE mysql.general_log TO mysql.general_log2;
DELETE FROM mysql.general_log2;

Note: When DELETE FROM mysql.general_log2 is executed to delete table data, it is found that the operating system data file still exists. You need to manually delete the data file and then continue with the following data operation steps

OPTIMIZE TABLE general_log2;
RENAME TABLE mysql.general_log2 TO mysql.general_log;
SET GLOBAL general_log = 'ON';

This method takes a long time

Method 2:

SET GLOBAL general_log = 'OFF';

Find the general_log file and execute

cat /dev/null > general_log.csv

I found that the size was also released, which was much faster than the previous one.

Method 3:

You can add it to the configuration file my.conf:

general_log=1
general_log_file = '/data/mysql/general_log.CSV'

Put the file on a larger disk

The above is all the knowledge points introduced this time. Thank you for your learning and support for 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of MySQL database binlog cleanup command
  • How to quickly clean up billions of data in MySQL database
  • Code for automatically backing up and cleaning up MySQL database using batch processing
  • How to clean up Alibaba Cloud MySQL space
  • How to completely delete the MySQL service (clean the registry)
  • Two ways to correctly clean up mysql binlog logs
  • How to automatically clean up MySQL binlog logs
  • Shell script automatically backs up MySQL to FTP and regularly cleans up expired backups
  • Analyze the causes and cleanup of fragmentation in MySQL tables
  • PHP data is cleaned before storage. Note that the value range of PHP intval is different from that of MySQL int.
  • How to clean up data in MySQL online database

<<:  A brief talk about JavaScript parasitic composition inheritance

>>:  Linux echo text processing command usage and examples

Recommend

Detailed explanation of React event binding

1. What is In react applications, event names are...

Solution to MySQL IFNULL judgment problem

Problem: The null type data returned by mybatis d...

How to add sudo permissions to a user in Linux environment

sudo configuration file The default configuration...

MySQL 8.0.11 installation summary tutorial diagram

Installation environment: CAT /etc/os-release Vie...

Application of anchor points in HTML

Set Anchor Point <a name="top"><...

Docker volumes file mapping method

background When working on the blockchain log mod...

Various types of MySQL indexes

What is an index? An index is a data structure th...

Summary of ten Linux command aliases that can improve efficiency

Preface Engineers working in the Linux environmen...

Linux common commands chmod to modify file permissions 777 and 754

The following command is often used: chmod 777 文件...

Use of align-content in flex layout line break space

1. The effect diagram implemented in this article...

How to set Tomcat as an automatically started service? The quickest way

Set Tomcat to automatically start the service: I ...

How to use async await elegantly in JS

Table of contents jQuery's $.ajax The beginni...

js realizes packaging multiple pictures into zip

Table of contents 1. Import files 2. HTML page 3....

Detailed Introduction to Nginx Installation and Configuration Rules

Table of contents 1. Installation and operation o...