阻止 PostgreSQL 日志文件填满磁盘
我在 Ubuntu 服务器上运行 PostgreSQL 8.4。我意识到我的磁盘空间不足,因为日志文件变得太大。我可以调整写入日志文件的内容吗?
I'm running PostgreSQL 8.4 on an Ubuntu server. I realized that my disk is out of space because the log file had became too large. Can I adjust what gets written to the log file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑
/etc/postgresql/8.4/main/postgresql.conf
并更改或禁用各种log_*
参数。然后重新加载postgresql。您可能还想检查写入日志的内容。默认情况下,不应该有那么多的日志记录。可能您的应用程序抛出了很多错误,这就是您的硬盘被填满的原因。
Edit
/etc/postgresql/8.4/main/postgresql.conf
and change or disable the variouslog_*
parameters. Then reload postgresql.You might also want to check what gets written to the logs. By default, there should not be that much logging. Possibly, your application is throwing lots of errors, which is what's filling up your hard disks.