InnoDB: ignorare il registro di ripetizione a causa della mancanza di MLOG_CHECKPOINT


10

Sto lavorando con mysql versione 5.7.14 (installazione homebrew su OS X El Capitan). Il mio sistema non si è spento correttamente mentre il mysql era in esecuzione e dopo il riavvio quando provo ad avviare il demone mysql ottengo gli errori seguenti.

2017-02-07T10:11:42.224506Z 0 [Note] mysqld (mysqld 5.7.14) starting as process 18234 ...
2017-02-07T10:11:42.227375Z 0 [Warning] Setting lower_case_table_names=2 because file system for /usr/local/var/mysql/ is case insensitive
2017-02-07T10:11:42.228809Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2017-02-07T10:11:42.228821Z 0 [Note] InnoDB: Uses event mutexes
2017-02-07T10:11:42.228826Z 0 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
2017-02-07T10:11:42.228830Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.3
2017-02-07T10:11:42.229114Z 0 [Note] InnoDB: Number of pools: 1
2017-02-07T10:11:42.229227Z 0 [Note] InnoDB: Using CPU crc32 instructions
2017-02-07T10:11:42.230512Z 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
2017-02-07T10:11:42.239632Z 0 [Note] InnoDB: Completed initialization of buffer pool
2017-02-07T10:11:42.270103Z 0 [Note] InnoDB: Highest supported file format is Barracuda.
2017-02-07T10:11:42.270567Z 0 [ERROR] InnoDB: Ignoring the redo log due to missing MLOG_CHECKPOINT between the checkpoint 44002250712 and the end 44002250240.
2017-02-07T10:11:42.270606Z 0 [ERROR] InnoDB: Plugin initialization aborted with error Generic error
2017-02-07T10:11:42.577436Z 0 [ERROR] Plugin 'InnoDB' init function returned error.
2017-02-07T10:11:42.577470Z 0 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
2017-02-07T10:11:42.577484Z 0 [ERROR] Failed to initialize plugins.
2017-02-07T10:11:42.577488Z 0 [ERROR] Aborting

Ho provato a riavviare mysqld innodb-force-recovery=1senza successo. Qualcuno può guidarmi su come recuperare da questo stato.


Qualche fortuna qui? Sono bloccato esattamente allo stesso problema.
MMagician,

Risposte:


16

Prova quanto segue:

  1. Impostato innodb_log_checksums = ONsu master e slave.
  2. Rimuovi rm /var/lib/mysql/ib_logfile*.
  3. Ricomincia.

Rimuovendo ib_logfile perderai i tuoi dati.
digz6666,

@ digz6666 cosa te lo fa dire?
Brian Leishman,

@BrianLeishman mettiti alla prova con i dati demo :)
digz6666

2
@ digz6666 L'ho fatto prima di commentare, ha funzionato bene, niente ha perso, e il DB ha iniziato subito lol
Brian Leishman

1
Per riferimento ho anche provato questo (su WAMP però) e ha recuperato il database. Nessun dato è stato perso.
Jeff F.
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.