Binlog is a binary log file that is used to record MySQL data changes. Binlog logs can play a big role when restoring data. MySQL master-slave replication uses the binlog principle 1. After logging in to MySQL, use the following command to check whether binlog is enabled show variables like 'log_%'; 2. Edit the configuration file vi /etc/my.cnf 3. Add the following content server_id=2 log_bin = mysql-bin binlog_format = ROW expire_logs_days = 30 4. Restart MySQL service systemctl restart mysqld 5. Use the command show variables like 'log_%' again to view it. If it is ON, it means binlog is turned on. 6. The binlog log file storage path is /var/lib/mysql 7. Files like mysql-bin.000001 mysql-bin.000002 will be generated in this path You may also be interested in:
|
<<: How to develop Java 8 Spring Boot applications in Docker
>>: 20 JavaScript tips to help you improve development efficiency
Result: html <nav id="nav-1"> <...
In the process of learning web design, I did not ...
1. Download Go to the Apache official website htt...
I would like to share the installation and config...
Table of contents 1. Variables Use meaningful nam...
Mainly discuss its structure and some important pr...
The meta tag is used to define file information an...
The a tag is mainly used to implement page jump, ...
Nginx cross-domain configuration does not take ef...
Unzip the Maven package tar xf apache-maven-3.5.4...
Comprehensive understanding of html.css overflow ...
I have been using the CentOS purchased by Alibaba...
1. Prerequisites Since I have installed it severa...
1. Install the dependency packages first to avoid...
Although W3C has established some standards for HT...