Mysqlbinlog view binlog log times wrong unknown variable ' Default-character-set=utf8 '
When you export a SQL file by using a full file and an incremental binlog file to restore the full database. Since the bare binlog file cannot be looked directly at, so using mysqlbinlog This tool is used to view the contents of the Binlog file (using the way Man Mysqlbinlog view), But using Mysqlbinlog to convert binlog files into human-readable content is an error:
[Email protected] data]$ mysqlbinlog mysql-bin.000009mysqlbinlog:unknown variable ' Default-character-set=utf8 '
The reason is that the Mysqlbinlog tool does not recognize the DEFAULT-CHARACTER-SET=UTF8 directive in the configuration in Binlog.
There are two ways to solve this problem:
1. Modify the Default-character-set=utf8 in the [client] block in MySQL config file/etc/my.cnf to Character-set-server = UTF8, but this requires restarting the MySQL service, If your MySQL service is busy, it will cost a lot.
2, open with Mysqlbinlog--no-defaults mysql-bin.000009 command.
This article is from the "Mq_douer" blog, make sure to keep this source http://douer.blog.51cto.com/6107588/1934093
Mysqlbinlog view binlog log times wrong unknown variable ' Default-character-set=utf8 '