You have a typical rpm installation of mysql, and the process is
crashing. Here are the basic steps needed to find out more info
about a crash:
- Configure the OS to be able to create corefiles. (Redhat details), (Solaris details)
- Tell mysqld to create a corefile by adding the following options to my.cnf:
[mysqld_safe]
core-file-size=unlimited
[mysqld]
core-fileUsually the corefile will be created in the datadir with
a name like core.2921 where 2921 was the pid of the running
process. The location is configurable on most OS's.
You'll need the following to study the core file:
- exact mysqld binary that created the core file …