Não é possível instalar o MySQL 5.6 no Ubuntu 16.10

3

Eu estava seguindo esta instrução link

duke@ostrov:~$ sudo apt install mysql-server-5.6
[sudo] password for duke: 
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-5.6 : Depends: initscripts but it is not installable
                    Depends: sysv-rc (>= 2.88dsf-24) but it is not installable or
                             file-rc (>= 0.8.16) but it is not installable
                    Recommends: libhtml-template-perl but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
duke@ostrov:~$ sudo rm /var/lib/mysql/debian-5.7.flag
rm: cannot remove '/var/lib/mysql/debian-5.7.flag': No such file or directory
    
por Viktor 19.12.2016 / 08:04

1 resposta

0

Eu também estou usando o Ubuntu 16.10, e a versão padrão do servidor mysql no meu computador é 5.7 e está funcionando bem.

Tente os seguintes comandos:

    sudo apt-get install -f
    sudo apt-get purge mysql-server-5.6
    sudo apt-get update && sudo apt-get install mysql-server-5.7

Se você ainda receber um erro de pacotes quebrados, tente sudo dpkg --configure -a para corrigi-lo. Este também pode ser útil para você corrija pacotes quebrados.

(PS: Isso pode não funcionar, eu coloquei minha resposta porque eu não tenho reputação suficiente para comentar, espero que possa ajudá-lo!)

    
por artificerpi 19.12.2016 / 08:41