How to view mysql binlog (binary log)

How to view mysql binlog (binary log)

For example, when you create a new table or update data on an existing table, these events are stored in the mysql binlog, which is the binary log of the MySQL database.

Binary logs are very useful in MySQL replication, where the master server sends data from the binary log to the remote servers.

When you perform any type of recovery operation in MySQL, you are also dealing with binary log files.

The mysqlbinlog command is used to view the contents of the binary log in a readable, user-friendly format.

So how do we get and view mysql binlog (binary log)?

The following is a command method to obtain the current binary log list.

Execute the following show binary logs command from mysql which will display all binary logs in the system.

mysql> SHOW BINARY LOGS;
+-------------------+----------+
| Log_name | File_size |
+-------------------+----------+
|mysqld-bin.000001 | 15740 |
|mysqld-bin.000002 | 3319 |
..
..

If binary logging is not enabled on your system, you will see the following error message.

mysql> SHOW BINARY LOGS;
ERROR 1381 (HY000): You are not using binary logging

Where is the mysql binlog location?

By default, the binary log files are located in the /var/lib/mysql directory as shown below.

# ls -l /var/lib/mysql/
-rw-rw----. 1 mysql mysql 15740 Aug 16 14:57 mysqld-bin.000001
-rw-rw----. 1 mysql mysql 3319 Aug 16 14:57 mysqld-bin.000002
..
..

You may also be interested in:
  • Detailed explanation of MySQL database binlog cleanup command
  • 3 common errors in reading MySQL Binlog logs
  • 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

<<:  Build a server virtual machine in VMware Workstation Pro (graphic tutorial)

>>:  Three ways to implement virtual hosts under Linux7

Recommend

HTML set as homepage and add to favorites_Powernode Java Academy

How to implement the "Set as homepage" ...

Nodejs error handling process record

This article takes the connection error ECONNREFU...

Ten Experiences in Presenting Chinese Web Content

<br /> Focusing on the three aspects of text...

Vue 2.0 Basics in Detail

Table of contents 1. Features 2. Examples 3. Opti...

Docker Compose network settings explained

Basic Concepts By default, Compose creates a netw...

Use CSS to implement special logos or graphics

1. Introduction Since pictures take up a lot of s...

Implementation of socket options in Linux network programming

Socket option function Function: Methods used to ...

How to allow remote access to open ports in Linux

1. Modify the firewall configuration file # vi /e...

Understand the principle of page replacement algorithm through code examples

Page replacement algorithm: The essence is to mak...

Detailed explanation of global parameter persistence in MySQL 8 new features

Table of contents Preface Global parameter persis...

Vue uses three methods to refresh the page

When we are writing projects, we often encounter ...

MySQL 8.0.11 compressed version installation tutorial

This article shares the installation tutorial of ...

Detailed explanation of three ways to import CSS files

There are three ways to introduce CSS: inline sty...

Using HTML to implement a voting website cheating scheme that restricts IP

This is a cheating scheme for voting websites wit...