美文网首页
Windows下Mysql5.7开启binlog步骤

Windows下Mysql5.7开启binlog步骤

作者: seven1010 | 来源:发表于2018-07-02 17:12 被阅读17次
  • 查看是否开启了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步骤

      本文链接:https://www.haomeiwen.com/subject/dpmluftx.html