Acabei de adicionar as seguintes linhas em /etc/mysql/my.cnf depois que eu converti um banco de dados para usar o mecanismo InnoDB.
innodb_buffer_pool_size = 2560M
innodb_log_file_size = 256M
innodb_log_buffer_size = 8M
innodb_flush_log_at_trx_commit = 2
innodb_thread_concurrency = 16
innodb_flush_method = O_DIRECT
Mas isso gera a mensagem "ERROR 2013 (HY000) na linha 2: perda de conexão com o servidor MySQL durante a consulta", reiniciando o mysqld. E o log de erro do mysql mostra o seguinte
InnoDB: Error: log file ./ib_logfile0 is of different size 0 5242880 bytes
InnoDB: than specified in the .cnf file 0 268435456 bytes!
100118 20:52:52 [ERROR] Plugin 'InnoDB' init function returned error.
100118 20:52:52 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
100118 20:52:52 [ERROR] Unknown/unsupported table type: InnoDB
100118 20:52:52 [ERROR] Aborting
Então eu comentei esta linha
# innodb_log_file_size = 256M
E reiniciou o mysql com sucesso.
Eu me pergunto o que é o "5242880 bytes de arquivo de log" mostrado no erro do mysql? É o primeiro banco de dados no mecanismo InnoDB neste servidor, então quando e onde esse arquivo de log é criado? Neste caso, como posso habilitar a diretiva innodb_log_file_size em my.cnf?
EDITAR
Eu tentei apagar o / var / lib / mysql / ib_logfile0 e reiniciar o mysqld, mas ele ainda falhou. Agora mostra o seguinte no log de erros.
100118 21:27:11 InnoDB: Log file ./ib_logfile0 did not exist: new to be created
InnoDB: Setting log file ./ib_logfile0 size to 256 MB
InnoDB: Database physically writes the file full: wait...
InnoDB: Progress in MB: 100 200
InnoDB: Error: log file ./ib_logfile1 is of different size 0 5242880 bytes
InnoDB: than specified in the .cnf file 0 268435456 bytes!
Resolução
Funciona agora depois de deletado tanto ib_logfile0 quanto ib_logfile1 em / var / lib / mysql