2006-07-20 03:36:18 +00:00
|
|
|
# Configures where to put the kdump /proc/vmcore files
|
|
|
|
#
|
|
|
|
# This file contains a series of commands to perform (in order) when a
|
2008-06-05 15:18:53 +00:00
|
|
|
# kernel crash has happened and the kdump kernel has been loaded. Directives in
|
|
|
|
# this file are only applicable to the kdump initramfs, and have no effect if
|
|
|
|
# the root filesystem is mounted and the normal init scripts are processed
|
2006-12-15 21:05:01 +00:00
|
|
|
#
|
|
|
|
# Currently only one dump target and path may be configured at once
|
|
|
|
# if the configured dump target fails, the default action will be preformed
|
2008-06-05 15:18:53 +00:00
|
|
|
# the default action may be configured with the default directive below. If the
|
|
|
|
# configured dump target succedes
|
2006-07-20 03:36:18 +00:00
|
|
|
#
|
|
|
|
# Basics commands supported are:
|
2006-12-15 21:05:01 +00:00
|
|
|
# raw <partition> - Will dd /proc/vmcore into <partition>.
|
|
|
|
#
|
|
|
|
# net <nfs mount> - Will mount fs and copy /proc/vmcore to
|
|
|
|
# <mnt>/var/crash/%HOST-%DATE/, supports DNS.
|
|
|
|
#
|
|
|
|
# net <user@server> - Will scp /proc/vmcore to
|
|
|
|
# <user@server>:/var/crash/%HOST-%DATE/, supports DNS
|
|
|
|
# NOTE: make sure user has necessary write
|
|
|
|
# permissions on server
|
2012-06-19 02:52:51 +00:00
|
|
|
# blacklist <list of kernel modules> - Specify a space-separated list of
|
|
|
|
# kernel modules not to add to the initramfs.
|
|
|
|
# The kernel modules have to be specified without the
|
|
|
|
# ".ko" suffix.
|
2006-12-15 21:05:01 +00:00
|
|
|
#
|
2012-06-06 08:24:19 +00:00
|
|
|
# sshkey <path> - Will use the sshkey to do ssh dump
|
|
|
|
# Specifies the path of the ssh key you want to use
|
|
|
|
# when do ssh dump, the default value is
|
|
|
|
# /root/.ssh/kdump_id_rsa.
|
|
|
|
#
|
2006-12-15 21:05:01 +00:00
|
|
|
# <fs type> <partition> - Will mount -t <fs type> <partition> /mnt and copy
|
|
|
|
# /proc/vmcore to /mnt/var/crash/%DATE/.
|
|
|
|
# NOTE: <partition> can be a device node, label or uuid.
|
|
|
|
#
|
|
|
|
# path <path> - Append path to the filesystem device which you are
|
|
|
|
# dumping to. Ignored for raw device dumps.
|
|
|
|
# If unset, will default to /var/crash.
|
|
|
|
#
|
2012-06-08 03:38:01 +00:00
|
|
|
# core_collector <command> <options>
|
|
|
|
# - This allows you to specify the command to copy
|
|
|
|
# the vmcore. You could use the dump filtering
|
|
|
|
# program makedumpfile, the default one, to retrieve
|
|
|
|
# your core, which on some arches can drastically
|
|
|
|
# reduce core file size. See /sbin/makedumpfile --help
|
|
|
|
# for a list of options. Note that the -i and -g
|
|
|
|
# options are not needed here, as the initrd will
|
|
|
|
# automatically be populated with a config file
|
|
|
|
# appropriate for the running kernel.
|
2012-06-14 01:56:10 +00:00
|
|
|
# Default core_collector for raw/ssh dump is:
|
2012-06-08 03:38:01 +00:00
|
|
|
# "makedumpfile -F -c --message-level 1 -d 31".
|
|
|
|
# Default core_collector for other targets is:
|
|
|
|
# "makedumpfile -c --message-level 1 -d 31".
|
|
|
|
# For core_collector format details please refer to
|
|
|
|
# kexec-kdump-howto.txt or kdump.conf manpage.
|
2006-12-15 21:05:01 +00:00
|
|
|
#
|
2012-06-14 01:57:30 +00:00
|
|
|
# kdump_post <binary | script>
|
|
|
|
# - This directive allows you to run a specified
|
|
|
|
# executable just after the memory dump process
|
|
|
|
# terminates. The exit status from the dump process
|
|
|
|
# is fed to the kdump_post executable, which can be
|
|
|
|
# used to trigger different actions for success or
|
|
|
|
# failure.
|
|
|
|
#
|
|
|
|
# kdump_pre <binary | script>
|
|
|
|
# - works just like the kdump_post directive, but instead
|
|
|
|
# of running after the dump process, runs immediately
|
|
|
|
# before. Exit status of this binary is interpreted
|
|
|
|
# as follows:
|
|
|
|
# 0 - continue with dump process as usual
|
|
|
|
# non 0 - reboot the system
|
|
|
|
#
|
2008-06-05 15:18:53 +00:00
|
|
|
# extra_bins <binaries | shell scripts>
|
|
|
|
# - This directive allows you to specify additional
|
|
|
|
# binaries or shell scripts you'd like to include in
|
2012-06-14 01:57:30 +00:00
|
|
|
# your kdump initrd. Generally only useful in
|
|
|
|
# conjunction with a kdump_post binary or script that
|
|
|
|
# relies on other binaries or scripts.
|
2008-06-05 15:18:53 +00:00
|
|
|
#
|
|
|
|
# extra_modules <module(s)>
|
|
|
|
# - This directive allows you to specify extra kernel
|
|
|
|
# modules that you want to be loaded in the kdump
|
|
|
|
# initrd, typically used to set up access to
|
|
|
|
# non-boot-path dump targets that might otherwise
|
|
|
|
# not be accessible in the kdump environment. Multiple
|
|
|
|
# modules can be listed, separated by a space, and any
|
|
|
|
# dependent modules will automatically be included.
|
|
|
|
#
|
2010-06-13 19:20:48 +00:00
|
|
|
# default <reboot | halt | poweroff | shell>
|
2012-06-06 08:22:42 +00:00
|
|
|
# - Action to preform in case dumping to intended target
|
|
|
|
# fails. If no default action is specified saving vmcore
|
|
|
|
# to root fs is assumed default.
|
2006-12-15 21:05:01 +00:00
|
|
|
# reboot: If the default action is reboot simply reboot
|
|
|
|
# the system and loose the core that you are
|
|
|
|
# trying to retrieve.
|
2008-06-05 15:18:53 +00:00
|
|
|
# halt: If the default action is halt, then simply
|
|
|
|
# halt the system after attempting to capture
|
|
|
|
# a vmcore, regardless of success or failure.
|
2010-06-13 19:20:48 +00:00
|
|
|
# poweroff: The system will be powered down
|
2006-12-15 21:05:01 +00:00
|
|
|
# shell: If the default action is shell, then drop to
|
2012-06-06 08:22:46 +00:00
|
|
|
# an shell session inside the initramfs from
|
2006-12-15 21:05:01 +00:00
|
|
|
# where you can try to record the core manually.
|
|
|
|
# Exiting this shell reboots the system.
|
2012-06-06 08:22:46 +00:00
|
|
|
# Note: kdump uses bash as the default shell.
|
2006-07-20 03:36:18 +00:00
|
|
|
|
|
|
|
#raw /dev/sda5
|
2010-06-13 19:20:48 +00:00
|
|
|
#ext4 /dev/sda3
|
|
|
|
#ext4 LABEL=/boot
|
|
|
|
#ext4 UUID=03138356-5e61-4ab3-b58e-27507ac41937
|
2006-12-15 21:05:01 +00:00
|
|
|
#net my.server.com:/export/tmp
|
|
|
|
#net user@my.server.com
|
2012-02-22 03:16:09 +00:00
|
|
|
#sshkey /root/.ssh/kdump_id_rsa
|
2012-06-19 02:52:51 +00:00
|
|
|
#blacklist cfg80211
|
2012-06-06 08:24:10 +00:00
|
|
|
path /var/crash
|
2012-06-08 03:38:01 +00:00
|
|
|
#core_collector makedumpfile -c --message-level 1 -d 31
|
2012-06-14 01:56:10 +00:00
|
|
|
#core_collector scp
|
2012-06-14 01:57:30 +00:00
|
|
|
#kdump_post /var/crash/scripts/kdump-post.sh
|
|
|
|
#kdump_pre /var/crash/scripts/kdump-pre.sh
|
2008-06-05 15:18:53 +00:00
|
|
|
#extra_bins /usr/bin/lftp
|
|
|
|
#extra_modules gfs2
|
2006-12-15 21:05:01 +00:00
|
|
|
#default shell
|
|
|
|
|