You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 29, 2023. It is now read-only.
The script show_binlog expects the bin-log files to be named data/mysql-bin.[0-9]* however the default file names are data/binlog.[0-9]*.
Just run show_binlog in a sanbox. The output shows something like this:
ls: cannot access 'data/mysql-bin.[0-9]*': No such file or directory
No binlog found in (...)/data
# Usage: msb_8.0.31/show_binlog [BINLOG_PATTERN]
# Where BINLOG_PATTERN is a number, or part of a number used after 'mysql-bin'
# (The default is '[0-9]*]')
# examples:
# ./show_binlog 000001 | less
# ./show_binlog 000012 | vim -
# ./show_binlog | grep -i 'CREATE TABLE'
The script should work out of the box without any options or changes.