● 查看 Log 的保留天數
mysql> show variables like 'expire_logs_days';
● 更改 Log 的保留天數
mysql> set global expire_logs_days=1;
mysql> flush logs;
● 顯示 Log 的檔案清單及大小
mysql> show binary logs;
● 刪除 Log
mysql> purge binary logs to 'mysql-bin.000022';