Я пытаюсь решить эту проблему около 8 часов.
Из-за не связанных с этим проблем мне пришлось удалить mysql и переустановить его. с тех пор mysql аварийно завершает работу и перезапускается каждые 2-3 секунды с указанием ниже в журнале mysql.
170425 3:52:53 InnoDB: Assertion failure in thread 140306907342592 in file handler/ha_innodb.cc line 875
InnoDB: Failing assertion: cset == 0
InnoDB: We intentionally generate a memory trap.
InnoDB: Submit a detailed bug report to http://bugs.mysql.com.
InnoDB: If you get repeated assertion failures or crashes, even
InnoDB: immediately after the mysqld startup, there may be
InnoDB: corruption in the InnoDB tablespace. Please refer to
InnoDB: http://dev.mysql.com/doc/refman/5.1/en/forcing-innodb-recovery.html
InnoDB: about forcing recovery.
19:52:53 UTC - mysqld got signal 6 ;
This could be because you hit a bug. It is also possible that this binary
or one of the libraries it was linked against is corrupt, improperly built,
or misconfigured. This error can also be caused by malfunctioning hardware.
We will try our best to scrape up some info that will hopefully help
diagnose the problem, but since we have already crashed,
something is definitely wrong and this may fail.
key_buffer_size=8384512
read_buffer_size=131072
max_used_connections=0
max_threads=151
thread_count=0
connection_count=0
It is possible that mysqld could use up to
key_buffer_size + (read_buffer_size + sort_buffer_size)*max_threads = 338336 K bytes of memory
Hope that's ok; if not, decrease some variables in the equation.
Thread pointer: 0x0
Attempting backtrace. You can use the following information to find out
where mysqld died. If you see no messages after this, something went
terribly wrong...
stack_bottom = 0 thread_stack 0x40000
/usr/libexec/mysqld(my_print_stacktrace+0x29) [0x850ca9]
/usr/libexec/mysqld(handle_fatal_signal+0x483) [0x6a4143]
/lib64/libpthread.so.0() [0x3010c0f7e0]
/lib64/libc.so.6(gsignal+0x35) [0x3010832495]
/lib64/libc.so.6(abort+0x175) [0x3010833c75]
/usr/libexec/mysqld() [0x72d9db]
/usr/libexec/mysqld(dict_mem_table_add_col+0x20e) [0x76080e]
/usr/libexec/mysqld(dict_load_table+0x99e) [0x75c1be]
/usr/libexec/mysqld(dict_load_table_on_id+0x403) [0x75cf43]
/usr/libexec/mysqld(row_purge_step+0x39c) [0x7b383c]
/usr/libexec/mysqld(que_run_threads+0x55b) [0x7a278b]
/usr/libexec/mysqld(trx_purge+0x332) [0x7ccb32]
/usr/libexec/mysqld(srv_master_thread+0x708) [0x7c54c8]
/lib64/libpthread.so.0() [0x3010c07aa1]
/lib64/libc.so.6(clone+0x6d) [0x30108e8bcd]
The manual page at http://dev.mysql.com/doc/mysql/en/crashing.html contains
information that should help you find out what is causing the crash.
170425 03:52:53 mysqld_safe Number of processes running now: 0
170425 03:52:53 mysqld_safe mysqld restarted
170425 3:52:53 InnoDB: Initializing buffer pool, size = 8.0M
170425 3:52:53 InnoDB: Completed initialization of buffer pool
170425 3:52:53 InnoDB: Started; log sequence number 1 648020427
170425 3:52:53 [Note] Event Scheduler: Loaded 0 events
170425 3:52:53 [Note] /usr/libexec/mysqld: ready for connections.
Version: '5.1.73' socket: '/var/lib/mysql/mysql.sock' port: 3306 Source distribution
Я попытался восстановить базу данных несколькими способами, в том числе:
При использовании mysqlcheck я получаю сообщения об ошибках, аналогичные приведенным ниже, и не все базы данных повреждены, но те, которые имеют большое количество поврежденных таблиц:
joomla.e6dh5_utf8_conversion
Error : Unknown collation '#224' in table 'e6dh5_utf8_conversion' definition
error : Corrupt
Все безуспешно ... Поскольку я ранее создавал резервную копию своей базы данных, я думал, что "УБИРАЮ" поврежденные базы данных, MYsql даже не позволил бы мне это сделать !!
Есть ли кто-нибудь, кто может помочь?
В вашей базе данных есть Unknown collation
ошибка. Это означает, что вы установили старую версию MySQL, которая использовалась до сбоя.
Вам необходимо установить более новую версию MySQL, которая используется до сбоя, или последнюю версию MariaDB из Репозиторий Percona.
Не забудьте удалить старую версию mysql перед установкой новой версии командой:
# yum remove mysql mysql-server