Falha ao instalar o MySQL

0

Eu tentei instalar o MySQL usando o Synaptic, mas ele falhou ao iniciar a atualização com a seguinte saída:

Selecting previously unselected package mysql-client.
(Reading database ... 131143 files and directories currently installed.)
Unpacking mysql-client (from .../mysql-client_5.5.29-0ubuntu0.12.04.1_all.deb) ...
Setting up mysql-server-5.5 (5.5.29-0ubuntu0.12.04.1) ...
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
Setting up mysql-client (5.5.29-0ubuntu0.12.04.1) ...
Errors were encountered while processing:
 mysql-server-5.5
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Setting up mysql-server-5.5 (5.5.29-0ubuntu0.12.04.1) ...
130201 13:36:05 [Note] Plugin 'FEDERATED' is disabled.
130201 13:36:05 InnoDB: The InnoDB memory heap is disabled
130201 13:36:05 InnoDB: Mutexes and rw_locks use GCC atomic builtins
130201 13:36:05 InnoDB: Compressed tables use zlib 1.2.3.4
130201 13:36:05 InnoDB: Initializing buffer pool, size = 128.0M
130201 13:36:05 InnoDB: Completed initialization of buffer pool
130201 13:36:05 InnoDB: highest supported file format is Barracuda.
130201 13:36:06  InnoDB: Waiting for the background threads to start
130201 13:36:07 InnoDB: 1.1.8 started; log sequence number 1595685
130201 13:36:07  InnoDB: Starting shutdown...
130201 13:36:08  InnoDB: Shutdown completed; log sequence number 1595685
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

Não sei como separar o local onde a inicialização foi interrompida ou como começar. É provável que eu esteja perdendo uma biblioteca em algum lugar que explicaria isso? O plugin 'FEDERATED' desativado é importante? O que está acontecendo com o InnoDB?

    
por mfg 01.02.2013 / 21:01

1 resposta

1

Você tem o servidor MySQL ou apenas o cliente? O Servidor é o que você deve começar. Verifique se você tem isso.

$ sudo apt-get install mariadb-server

Em seguida, execute:

$ sudo service mariadb start Redirecting to /bin/systemctl start mariadb.service

Note que o mariadb é essencialmente o MySQL. Além disso, poste o comando que você está usando, não apenas a saída. Além disso, estou usando o CentOS para que minha saída pareça diferente da sua.

    
por 22.10.2015 / 23:06