MySQL binlog opening steps

MySQL binlog opening steps

Binlog is a binary log file that is used to record MySQL data changes. Binlog logs can play a big role when restoring data. MySQL master-slave replication uses the binlog principle

1. After logging in to MySQL, use the following command to check whether binlog is enabled

show variables like 'log_%';

2. Edit the configuration file

vi /etc/my.cnf

3. Add the following content

server_id=2

log_bin = mysql-bin

binlog_format = ROW

expire_logs_days = 30

4. Restart MySQL service

systemctl restart mysqld

5. Use the command show variables like 'log_%' again to view it. If it is ON, it means binlog is turned on.

6. The binlog log file storage path is

/var/lib/mysql

7. Files like mysql-bin.000001 mysql-bin.000002 will be generated in this path

You may also be interested in:
  • [MySQL binlog] How to thoroughly parse binlog in Mixed log format in MySQL
  • Introduction and analysis of three Binlog formats in MySQL
  • Two ways to correctly clean up mysql binlog logs
  • Binlog related commands and recovery techniques in MySQL
  • Summary of Binlog usage of MySQL database (must read)
  • Detailed explanation of Mysql Binlog data viewing method
  • MySQL's processing of binlog
  • Detailed explanation of MySQL database binlog cleanup command
  • How to choose the format when using binlog in MySQL

<<:  How to develop Java 8 Spring Boot applications in Docker

>>:  20 JavaScript tips to help you improve development efficiency

Recommend

Things to note when migrating MySQL to 8.0 (summary)

Password Mode PDO::__construct(): The server requ...

Usage of the target attribute of the html tag a

1: If you use the tag <a> to link to a page,...

Explanation of MySQL performance inspection through show processlist command

The show processlist command is very useful. Some...

MySql COALESCE function usage code example

COALESCE is a function that refers to each parame...

HTML user registration page settings source code

Design the web page shown above: <!DOCTYPE htm...

JavaScript to achieve full screen page scrolling effect

After I finished reading JavaScript DOM, I had a ...

How to customize an EventEmitter in node.js

Table of contents Preface 1. What is 2. How to us...

Command to remove (delete) symbolic link in Linux

You may sometimes need to create or delete symbol...

When modifying a record in MySQL, the update operation field = field + string

In some scenarios, we need to modify our varchar ...

How to design and create adaptive web pages

With the popularization of 3G, more and more peop...

Solution to CSS flex-basis text overflow problem

The insignificant flex-basis has caused a lot of ...

Ideas and codes for implementing Vuex data persistence

What is vuex vuex: is a state manager developed s...

Native JS to achieve blinds special effects

This article shares a blinds special effect imple...