Problema ao iniciar o MySQL Daemon

1

Acabei de encontrar o erro mais aleatório que já vi meu daemon MySQL vomitar ainda, tudo estava funcionando bem, então, de repente, ele caiu aleatoriamente e agora emiti isso quando eu iniciei, não tenho certeza se é porque meu arquivo 'my.cnf' é mínimo

Aqui está o meu 'my.cnf':

[mysqld]
# Settings user and group are ignored when systemd is used.
# If you need to run mysqld under different user or group,
# customize your systemd unit file for mysqld according to the
# instructions in http://fedoraproject.org/wiki/Systemd
datadir=/var/lib/mysql/
socket=/var/lib/mysql/mysql.sock
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0

[mysqld_safe]
log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid

Aqui estão os erros:

120817  3:47:26 [Note] Plugin 'FEDERATED' is disabled.
120817  3:47:26 InnoDB: The InnoDB memory heap is disabled
120817  3:47:26 InnoDB: Mutexes and rw_locks use GCC atomic builtins
120817  3:47:26 InnoDB: Compressed tables use zlib 1.2.5
120817  3:47:26 InnoDB: Using Linux native AIO
120817  3:47:26 InnoDB: Initializing buffer pool, size = 128.0M
120817  3:47:26 InnoDB: Completed initialization of buffer pool
InnoDB: Error: auto-extending data file ./ibdata1 is of a different size
InnoDB: 384 pages (rounded down to MB) than specified in the .cnf file:
InnoDB: initial 640 pages, max 0 (relevant if non-zero) pages!
120817  3:47:26 InnoDB: Could not open or create data files.
120817  3:47:26 InnoDB: If you tried to add new data files, and it failed here,
120817  3:47:26 InnoDB: you should now edit innodb_data_file_path in my.cnf back
120817  3:47:26 InnoDB: to what it was, and remove the new ibdata files InnoDB created
120817  3:47:26 InnoDB: in this failed attempt. InnoDB only wrote those files full of
120817  3:47:26 InnoDB: zeros, but did not yet use them in any way. But be careful: do not
120817  3:47:26 InnoDB: remove old data files which contain your precious data!
120817  3:47:26 [ERROR] Plugin 'InnoDB' init function returned error.
120817  3:47:26 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
120817  3:47:26 [ERROR] mysqld: unknown variable 'max_used_connections=0'
120817  3:47:26 [ERROR] Aborting

120817  3:47:26 [Note] mysqld: Shutdown complete

Qualquer ajuda seria muito apreciada, obrigado pessoal! : D

    
por Conner Stephen McCabe 17.08.2012 / 04:08

2 respostas

2

Seria melhor perguntar isso em um fórum de servidores do que em um fórum de programação?

Eu acho que você pode excluir os arquivos ibdata1 com segurança e eles são reconstruídos, mas para ter certeza renomeie o (s) arquivo (s) ibdata1 e reinicie o MySQL. Se isso falhar, renomeie-o de volta e vá para o lugar certo;)

Se funcionar, execute mysqlcheck ( link ) e / ou possivelmente exportar todos os dados como SQL (mysqldump), limpam o banco de dados inteiro e reimportam do arquivo de despejo.

    
por 17.08.2012 / 04:15
1

Pode ser o valor de innodb_data_file_path que foi alterado. Verifique seus arquivos /etc/mysql/conf.d/*.

Se não especificado de outra forma, o padrão é

innodb_data_file_path=ibdata1:10M:autoextend
    
por 09.04.2013 / 19:45