I've got a pair of MySQL databases that are set up for Master Slave replication. The slave is doing just fine.
The master, on the other hand, has been hoarding binary logs despite my best (automated) efforts.
I'm trying to set up the 'expire_logs_days' variable in MySQL's my.cnf file, but for some reason it seems to be being ignored. My my.cnf file looks something like:
[mysqld]
...
log-bin=/var/log/mysql/mysql-bin.log
server-id=1
expire_logs_days=3
log_bin_trust_function_creators=TRUE
sync_binlog=1
[mysqld_safe]
...
But when I run SHOW VARIABLES WHERE Variable_Name='expire_logs_days'
in MySQL, it returns me a value of 0
I've tried:
- Restarting MySQL
- Using this line:
expire_logs_days='3'
- Checked for other my.cnf files:
mysqld --help --verbose | grep cnf
- Found the line:
/etc/mysql/my.cnf /etc/my.cnf ~/.my.cnf order of preference
- My
my.cnf
file is located at/etc/my.cnf
- There are no files called my.cnf in the other locations
SET GLOBAL expire_logs_days=3
DOES work within MySQL, but doesn't really solve my problem per se
And that's about all I could think to do. I've run the manual PURGE command, which works just fine, but I'd prefer (although, if there's no way around it, I'll do it anyway) to not run the PURGE command using cron.
Anybody have any ideas? I'm just about tapped.
Thanks.