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:
|
<<: Build a server virtual machine in VMware Workstation Pro (graphic tutorial)
>>: Three ways to implement virtual hosts under Linux7
How to implement the "Set as homepage" ...
This article takes the connection error ECONNREFU...
<br /> Focusing on the three aspects of text...
This article introduces the development environme...
Table of contents 1. Features 2. Examples 3. Opti...
Basic Concepts By default, Compose creates a netw...
1. Introduction Since pictures take up a lot of s...
Socket option function Function: Methods used to ...
1. Modify the firewall configuration file # vi /e...
Page replacement algorithm: The essence is to mak...
Table of contents Preface Global parameter persis...
When we are writing projects, we often encounter ...
This article shares the installation tutorial of ...
There are three ways to introduce CSS: inline sty...
This is a cheating scheme for voting websites wit...