Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个经常超过 30gb 的 mysql 日志文件,当你意识到你的服务器因为这个文件已满时,这很糟糕。我需要一个简单的解决方案来将此文件限制在 1gb 左右,我不需要运行那么长时间的日志,而且我希望以后避免这个问题。
有任何想法吗?谢谢
要在 my.cnf 文件中指定它,请备份当前的 my.cnf 文件(始终推荐),停止从站,停止 MySQL 服务器并放置以下选项:
# relay log restrictions relay-log-space-limit=15G
然后保存并退出文件并启动 MySQL。除非你配置不同,否则 MySQL 会自动启动从属线程。