Linux 核心转储位置和 abrtd 配置

问题描述 投票:0回答:1

我正在尝试使用 abrtd 配置将 Linux (RHEL6.7) 核心转储位置更改为不同的目录

(通常会转到位置核心,但根据我的研究,如果启用 abrtd,则会覆盖默认位置。)

cat /proc/sys/kernel/core_pattern
/var/tmp/core-%e-%p-%t

abrtd.conf 转储位置如下所示

DumpLocation = /data/kdump/abrt/FQDN    (this is a nfs mount)

为什么我的应用程序核心转储不会转到 /data/kdump/abrt/FQDN 而是 /var/tmp 位置

我是否缺少任何配置指令?

linux linux-kernel coredump sigabrt stack-dump
1个回答
1
投票

我不知道你正在使用哪个Linux,但你需要更改

core_pattern
,以便它包含一个带有
abrt
二进制文件路径的管道,如下所示:

cat /proc/sys/kernel/core_pattern
|/usr/libexec/abrt-hook-ccpp /var/spool/abrt %s %c %p %u %g %t %h %e 636f726500

这样系统就知道核心转储将通过管道传输到 abrt。该值取自此处:https://access.redhat.com/solutions/61536

编辑:这里还有一个很好的解释:https://unix.stackexchange.com/questions/192716/how-to-set-the-core-dump-file-location-and-name

© www.soinside.com 2019 - 2024. All rights reserved.