All pages
Powered by GitBook
1 of 1

Loading...

Enabling Core Dumps

Enabling in an Option File

Core dumps are enabled by default on Windows, so this step can be skipped on Windows in those versions. See MDEV-18439 for more information.

In order to enable core dumps, you need to set the system variable either on the command-line or in a relevant server in an . For example:

You can check your current value by executing:

is a system variable. Its value can be checked at runtime by executing the following:

Core Files on Linux

There are some additional details related to using core files on Linux.

Disabling Core File Size Restrictions on Linux

On some systems there is a limit on the sizes of core files that can be dumped. You can check the system's current system-wide limit by executing the following:

You can check the current limit of the mariadbd process specifically by executing the following:

If you need to change the core size limit, the method you use depends on how you start mariadbd. See the sections below for more details.

The resource limits for the mariadbd process are printed to the when the mariadbd process crashes. That way, users can confirm whether the process may have been allowed to dump a core file. See for more information.

Running mariadbd Using mysqld_safe

If you are starting MariaDB by running , then configuring the following in the [mysqld_safe] option group in an option file should allow for unlimited sized core files:

You can check your current values by executing:

See for more details.

Note: If you are using and running mariadbd as the root user, then no core file is created on some systems. The solution is to run mariadbd as another user.

Running mariadbd Manually

If you are starting mariadbd manually or in a custom script, then you can allow for unlimited sized core files by executing the following in the same shell or script in which mariadbd is executed:

Running mariadbd Using systemd

If you are starting mariadbd using , then you may need to customize the MariaDB service to allow for unlimited size core files. For example, you could execute the following:

Using sudo systemctl edit mariadb.service add the contents:

See for more details.

Running MariaDB Containers

To get a core dump in a mariadb container requires to not include a sysctl kernel.core_pattern beginning with a pipe to an executable that doesn't exist in the container. Setting to a straight core is recommended.

Also see .

Changing the System-Wide Limit

If you want to change the system-wide limit to allow for unlimited size core files for the mysql user account, then you can do so by adding the following lines to a file in . For example:

The system would have to be restarted for this change to take effect.

See for more details.

Setting the Path on Linux

If you are using Linux, then it can be helpful to change a few settings to alter where the core files is written and what file name is used. This is done by setting the kernel.core_pattern and kernel.core_uses_pid attributes. You can check the current values by executing the following:

If you are using mysql-test-run and want to have the core as part of the test result, the optimal setting is probably the following (store cores in the current directory as core.number-of-process-id):

If you are using a production system, you probably want to have the core files in a specific directory, not in the data directory. They place to store cores can be temporarily altered using the utility, but it is often more common to alter them via the file system. See the following example:

The above commands will tell the system to put core files in /tmp/corefiles, and it also tells the system to put the process ID in the file name.

If you want to make these changes permanent, then you can add the following to a file in . For example:

Note: if you are using containers, the pid is always going to be 1, so this may not be a useful setting. Appending an identifier like %t to the will generate more unique files.

The value of kernel.core_pattern is printed to the when the mariadbd process crashes. That way, users can determine where the process may have dumped a core file. See for more information.

Note: Ensure that you have enough free disk space in the path pointed to by kernel.core_pattern.

Extracting Linux core dumps with systemd-coredump

Core dump management can be automated using , which then centrally manages all core dump files and provides information about detected core dumps and access to collected core files using the utility.

This is enabled per default on Red Hat Enterprise Linux 8 and CentOS 8, and maybe other contemporary Linux distribution releases by now, too. It can be easily checked for by looking at the kernel.core_pattern setting. If it looks like this systemd-coredump is enabled:

On other distributions like Ubuntu (at least up to 21.10) it is not enabled by default, but can be set up manually.

To see all recent core dumps on the system you can then simply run

Or you can check for MariaDB Server core dumps specifically with:

If an actual core file got stored you'll see present in the COREFILE column of the output, you can then extract the core file with:

using the process id number from the PID column, or when you just want to retrieve the latest MariaDB Server related entry:

Starting with systemd 248 it is also possible to invoke the gdb debugger directly using the new --debugger-arguments=... option, e.g. making the extraction of all thread backtraces from the most recent MariaDB server crash a one liner without even having to extract the core dump file first (requires gdb to be installed):

So far none of the long term support Linux distribution releases have a new enough systemd version for this, the (as of this writing) still upcoming Ubuntu 22.04 "Jammy Jellyfish" will probably the first to support this.

Core Dumps and setuid on Linux

Since mariadbd executes , you may have to set fs.suid_dumpable=2 to allow core dumps on Linux. You can check the current fs.suid_dumpable value by using the utility. For example:

You can temporarily set it to 2 by using the utility. For example:

Or you can temporarily set it to 2 by writing to the file system. For example:

If you want to permanently set it to 2 then you can add the following to a file in :

Note: If you don't want to change fs.suid_dumpable, then another solution is to start mariadbd directly as the mysql user, so that the call is not needed.

Forcing a Core File on Linux

You can get a core dump from a running server with:

This will store a core dump in filename.pid where pid is the process ID of mariadbd.mariadbd will continue to be running and will not be affected by gcore.

Another method is to force a core file for mariadbd by sending the process the sigabrt signal, which has the signal code 6. This is very useful to get the state of the unresponsive mariadbd process. However, this will cause mariadbd to crash, and crash recovery will be run on restart.

You can send the signal with the command. For example:

As an alternative to $(pidof mariadbd), you can find the process ID either by using the utility or by checking the file defined by the system variable.

Core Files on Windows

Core dumps are enabled by default on Windows. See for more information.

There are some additional details related to using core files on Windows.

Minidump Files on Windows

On Windows, the core file is created as a .

For details on how to configure and read the , see .

Core Files on Kubernetes

See the IBM project.

Core Files and Address Sanitizer (ASAN)

If your mariadbd binary is built with then it will not be able to generate a core file.

What's Included in Core Files

Core files usually contain a dump of all memory in the process's full address space. This means that if a server has some large buffers configured (such as a large ), then the server's core files can get very large.

Some large buffers have been excluded from core files on some systems as a way to reduce the size.

The following buffers are excluded:

  • InnoDB Redo log buffer (fixed 2M)

The buffers are only excluded on Linux when using kernel version 3.4 and above and when using a non-debug build of mariadbd. Some Linux kernel versions have a which would cause the following warning to be printed to the log:

In those cases, the core dump may exclude some additional data. If that is not a concern, then the warning can be ignored. The problem can be fixed by upgrading to a Linux kernel version in which the bug is fixed.

See Also

This page is licensed: CC BY-SA / Gnu FDL

[mariadb]
...
core_file
my_print_defaults --mariadbd
SHOW GLOBAL VARIABLES LIKE 'core_file';
MDEV-15051
systemd
systemd: Configuring the Core File Size
setting the path on Linux
Container with Debug Symbols
/etc/security/limits.d/
Configuring Linux for MariaDB: Configuring the Core File Size
sysctl
/proc
/etc/sysctl.conf.d/
kernel.core_pattern
MDEV-15051
systemd
coredumpctl
setuid
sysctl
sysctl
/proc
/etc/sysctl.conf.d/
setuid
kill
ps
pid_file
MDEV-18439
minidump file
minidump file
How to read the small memory dump file that is created by Windows if a crash occurs
Core Dump Handler
Address Sanitizer (ASAN)
bug
How to Produce a Full Stack Trace for mariadbd
HowTo: Debug Crashed Linux Application Core Files Like A Pro
A Nice Feature in MariaDB 10.3: no InnoDB Buffer Pool in Core Dumps
Getting MySQL Core file on Linux
ulimit -c
sudo cat /proc/$(pidof mariadbd)/limits | grep "core file"
[mysqld_safe]
...
core_file_size=unlimited
my_print_defaults mysqld_safe
ulimit -c unlimited
[Service]

LimitCORE=infinity
sudo tee /etc/security/limits.d/mariadb_core.conf <<EOF
mysql soft core unlimited
mysql hard core unlimited
EOF
sysctl kernel.core_pattern
sysctl kernel.core_uses_pid
sudo sysctl kernel.core_pattern=core.%p kernel.core_uses_pid=0
sudo mkdir /tmp/corefiles
sudo chmod 777 /tmp/corefiles
sudo sysctl kernel.core_pattern=/tmp/corefiles/core
sudo sysctl kernel.core_uses_pid=1
sudo tee /etc/sysctl.d/mariadb_core.conf <<EOF
kernel.core_pattern=/tmp/corefiles/core
kernel.core_uses_pid=1
EOF
# sysctl kernel.core_pattern
kernel.core_pattern = |/usr/lib/systemd/systemd-coredump %P %u %g %s %t %c %h %e
# coredumpctl list
# coredumpctl list /usr/sbin/mariadbd
# coredumpctl dump -o mariadbd.core ...PID...
# coredumpctl dump -o mariadb.core /usr/sbin/mariadbd
# coredumpctl debug --debugger-arguments="-batch -ex 'thread apply all bt full'" /usr/sbin/mariadbd
sysctl fs.suid_dumpable
sudo sysctl -w fs.suid_dumpable=2
sudo echo 2 > /proc/sys/fs/suid_dumpable
sudo tee /etc/sysctl.d/mariadb_fs_suid_dumpable.conf <<EOF
fs.suid_dumpable=2
EOF
sudo gcore -o filename $(pidof mariadbd)
sudo kill -6 $(pidof mariadbd)
Sep 25 10:41:19 srv1 mysqld: 2018-09-25 10:41:19 0 [Warning] InnoDB: Failed to set memory to DODUMP: Invalid argument ptr 0x2aaac3400000 size 33554432
core_file
option group
option file
core_file
error log
mysqld_safe
mysqld_safe: Configuring the Core File Size
mysqld_safe
error log
InnoDB buffer pool
InnoDB buffer pool
InnoDB log buffer
Query cache