Windows下Mysql5.7开启binlog步骤

  • 查看是否开启了binlog:show binary logs;
mysql> show binary logs;
ERROR 1381 (HY000): You are not using binary logging`
  • 开启binlog:修改mysql的配置文件my.ini。添加如下配置:
# Binary Logging.
log-bin=mysql-bin 
binlog-format=Row 
  • 重启mysql服务。
  • 验证binlog是否开启:show variables like 'log_bin'; 和 show binary logs;
mysql> show variables like 'log_bin';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| log_bin       | ON    |
+---------------+-------+
1 row in set, 1 warning (0.00 sec)
  • binlog文件的位置:
    C:\ProgramData\MySQL\MySQL Server 5.7\Data

你可能感兴趣的:(Windows下Mysql5.7开启binlog步骤)