Skip to content

Commit

Permalink
coredump: by default process and store core files up to 1GiB
Browse files Browse the repository at this point in the history
This is a major departure from our previous policy of soft core file
limit set to 0, i.e. core file processing and storage by
systemd-coredump was disabled. However, that policy made very difficult
for people to debug sporadic crashes with no known reproducer.

RHEL-only

Resolves: RHEL-15501
  • Loading branch information
msekletar authored and github-actions[bot] committed Apr 12, 2024
1 parent 06a6d5c commit f387005
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/system.conf.in
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
#DefaultLimitFSIZE=
#DefaultLimitDATA=
#DefaultLimitSTACK=
DefaultLimitCORE=0:infinity
#DefaultLimitCORE=
#DefaultLimitRSS=
#DefaultLimitNOFILE=1024:{{HIGH_RLIMIT_NOFILE}}
#DefaultLimitAS=
Expand Down
4 changes: 2 additions & 2 deletions src/coredump/coredump.conf
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
[Coredump]
#Storage=external
#Compress=yes
#ProcessSizeMax=2G
#ExternalSizeMax=2G
ProcessSizeMax=1G
ExternalSizeMax=1G
#JournalSizeMax=767M
#MaxUse=
#KeepFree=

0 comments on commit f387005

Please sign in to comment.