binlog
登录mysql: mysql -uroot –p
# 显示binlog的过期时间
show variables like '%expire%';
# 查看log配置详情
show variables like "log_%";
# 显示日志
show binary logs;
show master logs;
# 清除日志
reset master;
# 设置过期时间
set global binlog_expire_logs_seconds=60*60*24;
# 手动刷新日志
flush logs;
修改配置文件: /etc/my.cnf
or my.ini
[mysqld]
# 关闭binlog
skip-log-bin
#自动删除7天前的日志。默认值为0,表示从不删除。
expire_logs_days = 7
mysql清理和关闭binlog日志 https://www.cnblogs.com/king-dom/articles/15791013.html