Stackoverflow, I am currently running MySQL-server-community-5.0.89-0 and in my /etc/my.cnf I have expire_logs_days=1.
I'd like to change this option to expire_logs_days=0 so that my logs never auto-purge. My end goal is to create a script that will login to MySQL, issue a flush logs command creating a new binary log file and backup the old log files to /backup/binary-logs/hostname+date+bin.log.
I have a backup process creating a nightly backup of my data at 3am but if for example a crash were to happen at 4pm the following day, I need to have the ability to retrieve archived binary logs and replay the binary logs back from 3am-4pm so that no data is missing.
My server is adding roughly 40GB a day in transaction logs so I need to auto-purge the /backup/binary-logs folder based on files older than say 3 days.
Does anyone know if there a script to automatically handle the rotation and archival of my binary log files?