The server's binary log consists of files containing “events” that describe modifications to database contents. The server writes these files in binary format. To display their contents in text format, use the mysqlbinlog utility. You can also use mysqlbinlog to display the contents of relay log files written by a replica server in a replication setup because relay logs have the same format as binary logs. The binary log and relay log are discussed further in Section 7.4.4, “The Binary Log”, and Section 19.2.4, “Relay Log and Replication Metadata Repositories”.
Invoke mysqlbinlog like this:
mysqlbinlog [options] log_file ...
For example, to display the contents of the binary log file
named binlog.000003
, use this command:
mysqlbinlog binlog.000003
The output includes events contained in
binlog.000003
. For statement-based logging,
event information includes the SQL statement, the ID of the
server on which it was executed, the timestamp when the
statement was executed, how much time it took, and so forth. For
row-based logging, the event indicates a row change rather than
an SQL statement. See Section 19.2.1, “Replication Formats”, for
information about logging modes.
Events are preceded by header comments that provide additional information. For example:
# at 141
#100309 9:28:36 server id 123 end_log_pos 245
Query thread_id=3350 exec_time=11 error_code=0
In the first line, the number following at
indicates the file offset, or starting position, of the event in
the binary log file.
The second line starts with a date and time indicating when the
statement started on the server where the event originated. For
replication, this timestamp is propagated to replica servers.
server id
is the
server_id
value of the server
where the event originated. end_log_pos
indicates where the next event starts (that is, it is the end
position of the current event + 1). thread_id
indicates which thread executed the event.
exec_time
is the time spent executing the
event, on a replication source server. On a replica, it is the
difference of the end execution time on the replica minus the
beginning execution time on the source. The difference serves as
an indicator of how much replication lags behind the source.
error_code
indicates the result from
executing the event. Zero means that no error occurred.
When using event groups, the file offsets of events may be grouped together and the comments of events may be grouped together. Do not mistake these grouped events for blank file offsets.
The output from mysqlbinlog can be
re-executed (for example, by using it as input to
mysql) to redo the statements in the log.
This is useful for recovery operations after an unexpected
server exit. For other usage examples, see the discussion later
in this section and in Section 9.5, “Point-in-Time (Incremental) Recovery”.
To execute the internal-use
BINLOG
statements used by
mysqlbinlog, the user requires the
BINLOG_ADMIN
privilege (or the
deprecated SUPER
privilege), or
the REPLICATION_APPLIER
privilege
plus the appropriate privileges to execute each log event.
You can use mysqlbinlog to read binary log
files directly and apply them to the local MySQL server. You can
also read binary logs from a remote server by using the
--read-from-remote-server
option. To read remote binary logs, the connection parameter
options can be given to indicate how to connect to the server.
These options are --host
,
--password
,
--port
,
--protocol
,
--socket
, and
--user
.
When binary log files have been encrypted, which can be done
from MySQL 8.0.14 onwards, mysqlbinlog cannot
read them directly, but can read them from the server using the
--read-from-remote-server
option. Binary log files are encrypted when the server's
binlog_encryption
system
variable is set to ON
. The
SHOW BINARY LOGS
statement shows
whether a particular binary log file is encrypted or
unencrypted. Encrypted and unencrypted binary log files can also
be distinguished using the magic number at the start of the file
header for encrypted log files (0xFD62696E
),
which differs from that used for unencrypted log files
(0xFE62696E
). Note that from MySQL 8.0.14,
mysqlbinlog returns a suitable error if you
attempt to read an encrypted binary log file directly, but older
versions of mysqlbinlog do not recognise the
file as a binary log file at all. For more information on binary
log encryption, see
Section 19.3.2, “Encrypting Binary Log Files and Relay Log Files”.
When binary log transaction payloads have been compressed, which
can be done from MySQL 8.0.20 onwards,
mysqlbinlog versions from that release on
automatically decompress and decode the transaction payloads,
and print them as they would uncompressed events. Older versions
of mysqlbinlog cannot read compressed
transaction payloads. When the server's
binlog_transaction_compression
system variable is set to ON
, transaction
payloads are compressed and then written to the server's binary
log file as a single event (a
Transaction_payload_event
). With the
--verbose
option,
mysqlbinlog adds comments stating the
compression algorithm used, the compressed payload size that was
originally received, and the resulting payload size after
decompression.
The end position (end_log_pos
) that
mysqlbinlog states for an individual event
that was part of a compressed transaction payload is the same
as the end position of the original compressed payload.
Multiple decompressed events can therefore have the same end
position.
mysqlbinlog's own connection compression does less if transaction payloads are already compressed, but still operates on uncompressed transactions and headers.
For more information on binary log transaction compression, see Section 7.4.4.5, “Binary Log Transaction Compression”.
When running mysqlbinlog against a large
binary log, be careful that the filesystem has enough space for
the resulting files. To configure the directory that
mysqlbinlog uses for temporary files, use the
TMPDIR
environment variable.
mysqlbinlog sets the value of
pseudo_replica_mode
or
pseudo_slave_mode
to true
before executing any SQL statements. This system variable
affects the handling of XA transactions, the
original_commit_timestamp
replication delay
timestamp and the
original_server_version
system
variable, and unsupported SQL modes.
mysqlbinlog supports the following options,
which can be specified on the command line or in the
[mysqlbinlog]
and [client]
groups of an option file. For information about option files
used by MySQL programs, see Section 6.2.2.2, “Using Option Files”.
Table 6.23 mysqlbinlog Options
Option Name | Description | Introduced | Deprecated |
---|---|---|---|
--base64-output | Print binary log entries using base-64 encoding | ||
--bind-address | Use specified network interface to connect to MySQL Server | ||
--binlog-row-event-max-size | Binary log max event size | ||
--character-sets-dir | Directory where character sets are installed | ||
--compress | Compress all information sent between client and server | 8.0.17 | 8.0.18 |
--compression-algorithms | Permitted compression algorithms for connections to server | 8.0.18 | |
--connection-server-id | Used for testing and debugging. See text for applicable default values and other particulars | ||
--database | List entries for just this database | ||
--debug | Write debugging log | ||
--debug-check | Print debugging information when program exits | ||
--debug-info | Print debugging information, memory, and CPU statistics when program exits | ||
--default-auth | Authentication plugin to use | ||
--defaults-extra-file | Read named option file in addition to usual option files | ||
--defaults-file | Read only named option file | ||
--defaults-group-suffix | Option group suffix value | ||
--disable-log-bin | Disable binary logging | ||
--exclude-gtids | Do not show any of the groups in the GTID set provided | ||
--force-if-open | Read binary log files even if open or not closed properly | ||
--force-read | If mysqlbinlog reads a binary log event that it does not recognize, it prints a warning | ||
--get-server-public-key | Request RSA public key from server | ||
--help | Display help message and exit | ||
--hexdump | Display a hex dump of the log in comments | ||
--host | Host on which MySQL server is located | ||
--idempotent | Cause the server to use idempotent mode while processing binary log updates from this session only | ||
--include-gtids | Show only the groups in the GTID set provided | ||
--local-load | Prepare local temporary files for LOAD DATA in the specified directory | ||
--login-path | Read login path options from .mylogin.cnf | ||
--no-defaults | Read no option files | ||
--offset | Skip the first N entries in the log | ||
--password | Password to use when connecting to server | ||
--plugin-dir | Directory where plugins are installed | ||
--port | TCP/IP port number for connection | ||
--print-defaults | Print default options | ||
--print-table-metadata | Print table metadata | ||
--protocol | Transport protocol to use | ||
--raw | Write events in raw (binary) format to output files | ||
--read-from-remote-master | Read the binary log from a MySQL replication source server rather than reading a local log file | 8.0.26 | |
--read-from-remote-server | Read binary log from MySQL server rather than local log file | ||
--read-from-remote-source | Read the binary log from a MySQL replication source server rather than reading a local log file | 8.0.26 | |
--require-row-format | Require row-based binary logging format | 8.0.19 | |
--result-file | Direct output to named file | ||
--rewrite-db | Create rewrite rules for databases when playing back from logs written in row-based format. Can be used multiple times | ||
--server-id | Extract only those events created by the server having the given server ID | ||
--server-id-bits | Tell mysqlbinlog how to interpret server IDs in binary log when log was written by a mysqld having its server-id-bits set to less than the maximum; supported only by MySQL Cluster version of mysqlbinlog | ||
--server-public-key-path | Path name to file containing RSA public key | ||
--set-charset | Add a SET NAMES charset_name statement to the output | ||
--shared-memory-base-name | Shared-memory name for shared-memory connections (Windows only) | ||
--short-form | Display only the statements contained in the log | ||
--skip-gtids | Do not include the GTIDs from the binary log files in the output dump file | ||
--socket | Unix socket file or Windows named pipe to use | ||
--ssl-ca | File that contains list of trusted SSL Certificate Authorities | ||
--ssl-capath | Directory that contains trusted SSL Certificate Authority certificate files | ||
--ssl-cert | File that contains X.509 certificate | ||
--ssl-cipher | Permissible ciphers for connection encryption | ||
--ssl-crl | File that contains certificate revocation lists | ||
--ssl-crlpath | Directory that contains certificate revocation-list files | ||
--ssl-fips-mode | Whether to enable FIPS mode on client side | 8.0.34 | |
--ssl-key | File that contains X.509 key | ||
--ssl-mode | Desired security state of connection to server | ||
--ssl-session-data | File that contains SSL session data | 8.0.29 | |
--ssl-session-data-continue-on-failed-reuse | Whether to establish connections if session reuse fails | 8.0.29 | |
--start-datetime | Read binary log from first event with timestamp equal to or later than datetime argument | ||
--start-position | Decode binary log from first event with position equal to or greater than argument | ||
--stop-datetime | Stop reading binary log at first event with timestamp equal to or greater than datetime argument | ||
--stop-never | Stay connected to server after reading last binary log file | ||
--stop-never-slave-server-id | Slave server ID to report when connecting to server | ||
--stop-position | Stop decoding binary log at first event with position equal to or greater than argument | ||
--tls-ciphersuites | Permissible TLSv1.3 ciphersuites for encrypted connections | 8.0.16 | |
--tls-version | Permissible TLS protocols for encrypted connections | ||
--to-last-log | Do not stop at the end of requested binary log from a MySQL server, but rather continue printing to end of last binary log | ||
--user | MySQL user name to use when connecting to server | ||
--verbose | Reconstruct row events as SQL statements | ||
--verify-binlog-checksum | Verify checksums in binary log | ||
--version | Display version information and exit | ||
--zstd-compression-level | Compression level for connections to server that use zstd compression | 8.0.18 |
--help
,-?
Command-Line Format --help
Display a help message and exit.
-
Command-Line Format --base64-output=value
Type String Default Value AUTO
Valid Values AUTO
NEVER
DECODE-ROWS
This option determines when events should be displayed encoded as base-64 strings using
BINLOG
statements. The option has these permissible values (not case-sensitive):AUTO
("automatic") orUNSPEC
("unspecified") displaysBINLOG
statements automatically when necessary (that is, for format description events and row events). If no--base64-output
option is given, the effect is the same as--base64-output=AUTO
.NoteAutomatic
BINLOG
display is the only safe behavior if you intend to use the output of mysqlbinlog to re-execute binary log file contents. The other option values are intended only for debugging or testing purposes because they may produce output that does not include all events in executable form.NEVER
causesBINLOG
statements not to be displayed. mysqlbinlog exits with an error if a row event is found that must be displayed using