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.
我已经运行 MongoDB 一段时间了。这带来了一个值得付出的问题。
我的自定义日志策略如下: 1)每个日志文件的最大大小限制为 50MB 2)在指定的日志路径下限制总共 7 个日志文件
我怎样才能在 MongoDB 中实现这些东西?
提前致谢!
您需要编写一个检查日志文件大小的 cronjob,如果它大于 50MB,它会向您的 mongodb 进程发送一个 SIGUSR1(信号编号 10)。然后这将轮换 mongodb 日志。