16.14 MySQL bin-log日志清理
自动清理
永久生效
expire_logs_days = 7临时生效
show variables like '%expire_logs_days%';
set global expire_logs_days = 7;手动清理
show binary logs;purge binary logs to 'mysql-bin.000035';Last updated
expire_logs_days = 7show variables like '%expire_logs_days%';
set global expire_logs_days = 7;show binary logs;purge binary logs to 'mysql-bin.000035';Last updated
PURGE MASTER LOGS BEFORE '2019-09-09 13:00:00';PURGE MASTER LOGS BEFORE DATE_SUB(NOW( ), INTERVAL 3 DAY);