Servidor travou, alguns bancos de dados MySQL estão quebrados. Tentando se recuperar com a recuperação do InnoDB, mas o ibdata1 parece estar corrompido

3

Eu tenho um problema. Alguns dias atrás, meu servidor raiz falha após uma queda de energia. Eu percebi que o servidor MySQL não inicia. Nos logs, descubro que ocorreu um erro com ibdata1 do InnoDB.

Eu tentei o programa de recuperação automática do InnoDB (innodb_force_recovery). Eu reinstalei o servidor MySQL. Todos esses caminhos não ajudaram. Eu tentei mais alguns que eu recebo de fóruns e outras plataformas comunitárias (outras variáveis no my.cnf etc.). Isso também não me ajudou. Então eu acho que preciso de ajuda pessoal. O problema é que não encontro nenhuma solução "real" para esse problema na internet.

No momento, tenho um servidor MariaDB (versão 5.5) na minha raiz.

A mensagem de erro quando eu inicio o servidor diretamente (mysqld --console) é:

root@GPR0420:/var/lib# mysqld
131125 17:06:17 [Warning] An old style --language or -lc-message-dir value with language specific part detected: /usr/share/mysql/english/
131125 17:06:17 [Warning] Use --lc-messages-dir without language specific part instead.
131125 17:06:17 InnoDB: The InnoDB memory heap is disabled
131125 17:06:17 InnoDB: Mutexes and rw_locks use GCC atomic builtins
131125 17:06:17 InnoDB: Compressed tables use zlib 1.2.3.4
131125 17:06:17 InnoDB: Using Linux native AIO
131125 17:06:17 InnoDB: Initializing buffer pool, size = 128.0M
131125 17:06:17 InnoDB: Completed initialization of buffer pool
131125 17:06:17 InnoDB: highest supported file format is Barracuda.
InnoDB: The user has set SRV_FORCE_NO_LOG_REDO on
InnoDB: Skipping log redo
InnoDB: Error: trying to access page number 4294899583 in space 0,
InnoDB: space name ./ibdata1,
InnoDB: which is outside the tablespace bounds.
InnoDB: Byte offset 0, len 16384, i/o type 10.
InnoDB: If you get this error at mysqld startup, please check that
InnoDB: your my.cnf matches the ibdata files that you have in the
InnoDB: MySQL server.
131125 17:06:17  InnoDB: Assertion failure in thread 140125885400864 in file fil0fil.c line 5451
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.5/en/forcing-innodb-recovery.html
InnoDB: about forcing recovery.
131125 17:06:17 [ERROR] 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.

To report this bug, see http://kb.askmonty.org/en/reporting-bugs

 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.

 Server version: 5.5.34-MariaDB-1~squeeze
 key_buffer_size=167772160
 read_buffer_size=131072
 max_used_connections=0
 max_threads=153
 thread_count=0
 It is possible that mysqld could use up to
 key_buffer_size + (read_buffer_size + sort_buffer_size)*max_threads = 499482 K  bytes of memory
 Hope that's ok; if not, decrease some variables in the equation.

Thread pointer: 0x0x0
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 = 0x0 thread_stack 0x30000
addr2line: 'mysqld': No such file
mysqld(my_print_stacktrace+0x2e)[0x7f719a2e621e]
mysqld(handle_fatal_signal+0x4ac)[0x7f7199ee641c]
/lib/libpthread.so.0(+0xeff0)[0x7f71995deff0]
/lib/libc.so.6(gsignal+0x35)[0x7f7197eb81b5]
/lib/libc.so.6(abort+0x180)[0x7f7197ebafc0]
mysqld(+0x8304e9)[0x7f719a23c4e9]
mysqld(+0x7ff71d)[0x7f719a20b71d]
mysqld(+0x80025f)[0x7f719a20c25f]
mysqld(+0x7ef407)[0x7f719a1fb407]
mysqld(+0x835422)[0x7f719a241422]
mysqld(+0x8380fc)[0x7f719a2440fc]
mysqld(+0x7ce0f2)[0x7f719a1da0f2]
mysqld(+0x802fe1)[0x7f719a20efe1]
mysqld(+0x80392c)[0x7f719a20f92c]
mysqld(+0x7a4af5)[0x7f719a1b0af5]
mysqld(+0x760e9e)[0x7f719a16ce9e]
mysqld(_Z24ha_initialize_handlertonP13st_plugin_int+0x48)[0x7f7199ee8808]
mysqld(+0x38bd16)[0x7f7199d97d16]
mysqld(_Z11plugin_initPiPPci+0x785)[0x7f7199d9ad15]
mysqld(+0x2f3cb7)[0x7f7199cffcb7]
mysqld(_Z11mysqld_mainiPPc+0x5cd)[0x7f7199d00b7d]
/lib/libc.so.6(__libc_start_main+0xfd)[0x7f7197ea4c8d]
mysqld(+0x2e90b5)[0x7f7199cf50b5]
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.

Esse erro me diz que há um erro no ibdata1 ou que esse arquivo está corrompido. É possível reparar o arquivo ibdata1? E quando não, podemos extrair alguns dados que não são corruptos deste arquivo?

Espero que você possa me ajudar. Foi legal ter os dados "novos" (não em backup) porque os bancos de dados contêm estatísticas.

Atenciosamente, Jonniboy

    
por Jonniboy 25.11.2013 / 17:28

1 resposta

1

Parece que o innodb_force_recovery está definido como 6 no seu my.cnf, portanto, ele não tentará se recuperar com base em logs binários, tente configurá-lo como 0.

link

verifique também se você tinha logs binários ativados no momento da falha: link

    
por 25.11.2013 / 17:41