Erro de instalação do mysql no Ubuntu 14.04 [duplicado]

1

Quando eu tento instalar o mysql por este comando no Ubuntu 14.04 eu recebo este erro. Ajude-me com uma solução simples e detalhada, pois sou novo no Ubuntu.

sudo apt-get install mysql-server

Error:
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 mysql-server : Depends: mysql-community-server (= 5.6.25-3ubuntu15.04) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
    
por user4724926 07.07.2015 / 15:50

1 resposta

0

Você pode tentar uma desinstalação limpa de tudo que esteja relacionado ao mysql.

sudo apt-get purge mysql-community-server mysql-server

Em seguida, reinstale o servidor mysql. Se isso não funcionar, tente fazer uma busca por mysql usando apt:

apt-cache search mysql

E tente instalar outra versão para o mysql-server e o mysql-client.

    
por Robert Gabriel 07.07.2015 / 16:14