Ubuntu 16.04: Erro durante a instalação (sudo apt install mysql-server) [duplicado]

0

Eu estava tendo problemas no mysql após a atualização do ubnutu, então eu apenas segui as etapas como purgar primeiro e depois instalar um novo sudo apt purge mysql-server mysql-server-5.7 mysql-server-core-5.7

Mas estou recebendo esses erros durante a execução das instalações.

update-alternatives: error: alternative link /etc/mysql/my.cnf is already managed by my.cnf.bak
dpkg: error processing package mysql-server-5.7 (--configure):
 subprocess installed post-installation script returned error exit status 2
dpkg: dependency problems prevent configuration of mysql-server:
 mysql-server depends on mysql-server-5.7; however:
  Package mysql-server-5.7 is not configured yet.

dpkg: error processing package mysql-server (--configure):
 dependency problems - leaving unconfigured
No apport report written because the error message indicates its a followup error from a previous failure.
                                                                                                          Processing triggers for systemd (229-4ubuntu17) ...
Processing triggers for ureadahead (0.100.0-19) ...
Errors were encountered while processing:
 mysql-server-5.7
 mysql-server
E: Sub-process /usr/bin/dpkg returned an error code (1)
    
por Nikunj Kanetiya 13.09.2017 / 16:43

1 resposta

0

Tente executar isso e veja como funciona.

sudo service mysql stop
sudo apt remove mysql*
sudo apt purge mysql*
sudo apt autoremove
sudo apt install mysql-server

Para executar o script de segurança incluído:

sudo mysql_secure_installation

Por favor, atualize sua pergunta com a saída desta se você receber algum erro.

    
por Anders Thyrsson 13.09.2017 / 16:54