本文主要是介绍(已解决)ERROR 3683 (HY000): The option expire_logs_days and binlog_expire_logs_seconds cannot be used,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
-
问题描述
设置expire_logs_days参数出现如下问题:
ERROR 3683 (HY000): The option expire_logs_days and binlog_expire_logs_seconds cannot be used together. Please use binlog_expire_logs_seconds to set the expire time (expire_logs_days is deprecated)
-
解决方案
这个参数的意思是设置日志失效日期为3天,默认是30天,比较耗费磁盘空间。
这个参数已经弃用, 改用
binlog_expire_logs_seconds
,单位由天改为秒,如下设置1天。set global binlog_expire_logs_seconds=60*60*24;
可以通过
show variables like '%expire%';
查看更改结果。永久改动可以找到
/etc/mysql/my.cnf
(Ubuntu)文件写入配置。 -
References
- MySQL 8.0.12 binlog参数binlog_expire_logs_seconds
- Is it safe to delete mysql-bin files?
- How do I find the MySQL my.cnf location
这篇关于(已解决)ERROR 3683 (HY000): The option expire_logs_days and binlog_expire_logs_seconds cannot be used的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!