1. mysqlbinlog: [ERROR] unknown variable 'default-character-set=utf8mb4' When we add the default-character-set=utf8mb4 option in my.cnf, an error will be reported when viewing binlog in mysqlbinlog. Solution: Add the --no-defaults option after .mysqlbinlog For example: mysql bin executable file path /bin/mysqlbinlog --no-defaults binlog directory /mysql_bin.000005 2.ERROR 1840 (HY000) at line 24: @@GLOBAL.GTID_PURGED can only be set when @@GLOBAL.GTID_EXECUTED is empty. Use mysqldump to export data and migrate the database. When migrating in, the above error was reported. The reason for the query is: the current GTID_EXECUTED parameter already has a value, and the dump file from the source database contains the SET @@GLOBAL.GTID_PURGED operation Solution: Method 1: reset mater This operation can clear the GTID_EXECUTED value of the current library Method 2: --set-gtid-purged=off When dumping, add the --set-gtid-purged=off parameter to avoid exporting gtid information. 3.ERROR 1782 (HY000) at line 23: @@SESSION.GTID_NEXT cannot be set to ANONYMOUS when @@GLOBAL.GTID_MODE = ON. When we use the mysqlbinlog tool to specify --stop-position and --start-position for recovery (partial recovery), an error is reported. For example, the data in binlog is as follows: When we select the starting point corresponding to Query (713) instead of the Pos corresponding to Gtid (648), an error will be reported. The following writing error: Installation path/ The following writing does not report an error: Installation path Summarize The above are the three common errors in reading MySQL Binlog logs that I introduced to you. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
>>: JavaScript implements product details of e-commerce platform
Copy code The code is as follows: <html> &l...
Preface Tomcat is a widely used Java web containe...
Table of contents Dockerfile pom.xml Jenkins Conf...
Implementing carousel with a single DOM node You ...
1. Preparation 1.1 Download the tomcat compressed...
There is currently a requirement that an operatio...
Table of contents The origin of JSBridge The bidi...
Table of contents 1. ChildNodes attribute travers...
introduce Usually a background server program mus...
I have also been researching MySQL performance op...
Linear-gradient background-image: linear-gradient...
Use native JS to write a nine-square grid to achi...
Most websites nowadays have long pages, some are ...
Table of contents Preface Solution: Step 1 Step 2...
Table of contents Overview Using mapped types to ...