Corrigindo o pacote myslq-server quebrado após a atualização para o 12.04

3

Após a atualização para o 12.04, o servidor mysql não pôde iniciar.

Eu tentei muitas coisas diferentes, mas sem sorte.

Agora, quando tento instalá-lo, obtenho:

$  sudo apt-get install mysql-server-5.5
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Suggested packages:
  tinyca
The following NEW packages will be installed:
  mysql-server-5.5
0 upgraded, 1 newly installed, 0 to remove and 39 not upgraded.
Need to get 0 B/8,708 kB of archives.
After this operation, 31.3 MB of additional disk space will be used.
Preconfiguring packages ...
Selecting previously unselected package mysql-server-5.5.
(Reading database ... 243325 files and directories currently installed.)
Unpacking mysql-server-5.5 (from .../mysql-server-5.5_5.5.22-0ubuntu1_i386.deb) ...
Processing triggers for man-db ...
Processing triggers for ureadahead ...
ureadahead will be reprofiled on next reboot
Setting up mysql-server-5.5 (5.5.22-0ubuntu1) ...
120509 20:32:08 [Note] Plugin 'FEDERATED' is disabled.
120509 20:32:08 InnoDB: The InnoDB memory heap is disabled
120509 20:32:08 InnoDB: Mutexes and rw_locks use GCC atomic builtins
120509 20:32:08 InnoDB: Compressed tables use zlib 1.2.3.4
120509 20:32:08 InnoDB: Initializing buffer pool, size = 128.0M
120509 20:32:08 InnoDB: Completed initialization of buffer pool
InnoDB: Error: log file ./ib_logfile0 is of different size 0 67108864 bytes
InnoDB: than specified in the .cnf file 0 5242880 bytes!
120509 20:32:09 [ERROR] Plugin 'InnoDB' init function returned error.
120509 20:32:09 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
120509 20:32:09 [ERROR] Unknown/unsupported storage engine: InnoDB
120509 20:32:09 [ERROR] Aborting

120509 20:32:09 [Note] /usr/sbin/mysqld: Shutdown complete

start: Job failed to start
invoke-rc.d: initscript mysql, action "start" failed.
dpkg: error processing mysql-server-5.5 (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 mysql-server-5.5
E: Sub-process /usr/bin/dpkg returned an error code (1)

Alguém pode sugerir alguma maneira de corrigir isso ou devo reinstalar todo o sistema?

Obrigado antecipadamente.

    
por umpirsky 09.05.2012 / 20:36

2 respostas

3

A reinstalação do seu sistema completo não é necessária. Se qualquer coisa você sempre pode fazer

sudo apt-get remove --purge mysql-server
sudo apt-get install mysql-server-5.5

Coisas que aconteceram quando eu instalei o mysql e tive problemas:

  • É possível que você esteja ausente ou tenha um /etc/my.cnf corrompido (veja a mensagem sobre um problema no .cnf?). Se sim ...

    sudo mv /etc/mysql/my.cnf  /etc/mysql/my.cnf.old 
    sudo cp /etc/mysql/my.cnf.dpkg-old /etc/mysql/my.cnf
    /etc/init.d/mysql start
    

    Claro, primeiro verifique se você tem um my.cnf.dpkg.dist

por Rinzwind 09.05.2012 / 21:27
5

Essa resposta é extremamente perigosa para qualquer pessoa que tenha bancos de dados mysql, uma vez que irá apagar todos eles. E não é necessário realizar tal procedimento. Basta fazer:

sudo touch /etc/apparmor.d/local/usr.sbin.mysqld
service mysqld start

E o mysql retornará ao estado normal, o mysql estará rodando e seus bancos de dados terminarão vivos, não apagados ..

    
por Ignacio J. 07.08.2012 / 02:04