Instale o mysql-server 5.6 no Debian Wheezy

0

Eu tive uma instalação confusa do mysql no meu servidor Debian. Eu me livrei de tudo usando o dpkg --force all --purge packet em qualquer pacote mysql que eu pudesse encontrar (mysql-common, mysql-server, mysql-client, phpmyadmin, etc.)

Agora, apesar de ser fácil fazer uma nova reinstalação, no entanto, fico preso com a seguinte mensagem de erro:

sudo apt-get install mysql-server
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-server-5.6 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

O que me incomoda é que não pareço ter pacotes, dpkg --get-selections | grep hold não retorna nada.

Eu também tentei com o aptitude:

sudo aptitude install mysql-server
The following NEW packages will be installed:
  libaio1{a} libdbd-mysql-perl{ab} libdbi-perl{ab} libmysqlclient18{a} mysql-client-5.6{a} mysql-client-core-5.6{a} mysql-common{a} mysql-common-5.6{a} mysql-server 
  mysql-server-5.6{a} mysql-server-core-5.6{a} 
0 packages upgraded, 11 newly installed, 0 to remove and 0 not upgraded.
Need to get 40,6 MB/47,5 MB of archives. After unpacking 155 MB will be used.
The following packages have unmet dependencies:
 libdbd-mysql-perl : Depends: perlapi-5.14.2 which is a virtual package.
 libdbi-perl : Depends: perlapi-5.14.2 which is a virtual package.
The following actions will resolve these dependencies:

     Keep the following packages at their current version:
1)     libdbd-mysql-perl [Not Installed]                  
2)     libdbi-perl [Not Installed]                        
3)     mysql-client-5.6 [Not Installed]                   
4)     mysql-server [Not Installed]                       
5)     mysql-server-5.6 [Not Installed]  

No entanto, como você pode ver, não instala nada ..

Estou preso agora e não consigo encontrar como obter um servidor MySQL funcional. Qualquer ajuda muito apreciada.

    
por fkoessler 16.06.2016 / 16:51

1 resposta

1

Primeira execução:

aptitude -f install

Em seguida, crie o arquivo mysql.list :

 nano /etc/apt/sources.list.d/mysql.list

adicione as seguintes linhas:

deb http://repo.mysql.com/apt/debian/ wheezy mysql-5.6
deb-src http://repo.mysql.com/apt/debian/ wheezy mysql-5.6

Atualize e instale o mysql 5.6:

apt-get update
apt-get install mysql-server-5.6
    
por 16.06.2016 / 17:08

Tags