服务器之家

服务器之家 > 正文

Postgresql的日志配置教程详解

时间:2021-03-13 18:54     来源/作者:51cto

 

背景

公司的项目中使用了postgresql(简称pg)作为其数据库管理系统,前两天环境突然崩溃了,页面无法打开。经过排查,我发现是数据库所在机器磁盘满了,通过目录和文件排序,原来是pg的日志太多(大约保留了大半年的日志在磁盘上没有被清理)。

我看了下pg的日志配置,发现基本都是用的默认配置,日志滚动没有开启,于是乎做了下相关配置优化后对pg进行重启,最后看了pg的日志滚动,恢复正常了。以下是我梳理的关于pg的日志配置项。

 

配置详解

配置文件:postgresql.conf

 

配置1:日志开启与关闭

默认为off,设置为on则pg可以记录相关日志,建议打开,否则在数据库出现异常时候,没有日志来定位具体问题

?
1
2
3
4
5
# This is used when logging to stderr:
logging_collector =on# Enable capturing of stderr and csvlog
# into log files. Required to be on for
# csvlogs.
# (change requires restart)

 

配置2:日志滚动策略

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# These are only used if logging_collector is on:
 
#配置日志目录,默认为pg_log即可
 
log_directory = 'pg_log' # directory where log files are written,
 
# can be absolute or relative to PGDATA
 
#pg日志文件名及其扩展名,默认即可
 
log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # log file name pattern,
 
# can include strftime() escapes
 
#pg日志文件的权限,默认即可
 
log_file_mode = 0600 # creation mode for log files,
 
#开启日志滚动阶段,这里需要设置为on
 
log_truncate_on_rotation =on# If on, an existing log file with the
 
#日志保留天数,这里看实际环境,如果是测试建议1d,如果是生产环境建议7d
 
log_rotation_age = 1d # Automatic rotation of logfiles will
 
#单个日志大小,默认100MB即可,比较标准的配置

 

配置3:日志打印时机

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#发送给客户端的消息级别,建议warning即可,日志等级越低,打印的内容越多,性能上越有损耗
client_min_messages = warning # values in order of decreasing detail:
# debug5
# debug4
# debug3
# debug2
# debug1
# log
# notice
# warning
# error
#写到数据库日志文件中的消息的级别,建议warning即可,日志等级越低,打印的内容越多,性能上越有损耗
log_min_messages = warning # values in order of decreasing detail:
# debug5
# debug4
# debug3
# debug2
# debug1
# info
# notice
# warning
# error
# log
# fatal
# panic
#是否记录导致数据库出现错误的SQL语句,建议warning即可,日志等级越低,打印的内容越多,性能上越有损耗
log_min_error_statement = error # values in order of decreasing detail:
# debug5
# debug4
# debug3
# debug2
# debug1
# info
# notice
# warning
# error
# log
# fatal
# panic (effectively off)

 

配置4:数据库统计监控

?
1
2
3
4
5
#log_statement_stats为on则会开启log_parser_stats,log_planner_stats,log_executor_stats这三个选项,生产环境不建议开启,建议测试环境开启,用于定位问题。
#log_parser_stats = off
#log_planner_stats = off
#log_executor_stats = off
#log_statement_stats = off

 

配置5:慢sql记录配置

?
1
2
#执行sql时间为2s以上的sql都会被记录下来
log_min_duration_statement = 2s

以上配置再修改完之后,均需要重启pg生效。

到此这篇关于Postgresql的日志配置的文章就介绍到这了,更多相关Postgresql日志配置内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.51cto.com/14900374/2583107

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部