Tente fazer uma limpeza e, em seguida, reinstale-a.
sudo apt-get remove --purge mysql-\*
sudo apt-get install mysql-server mysql-client
Eu tenho problemas em instalar ou remover o mysql-server-5.6 parcialmente instalado no ubuntu15.04. O erro que estou recebendo foi
$ sudo apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
mysql-server-5.6
The following packages will be upgraded:
mysql-server-5.6
1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
22 not fully installed or removed.
Need to get 0 B/5,501 kB of archives.
After this operation, 50.8 MB of additional disk space will be used.
Do you want to continue? [Y/n]
Preconfiguring packages ...
Setting up mysql-common (5.6.24-0ubuntu2) ...
update-alternatives: error: alternative path /etc/mysql/my.cnf.fallback doesn't exist
dpkg: error processing package mysql-common (--configure):
subprocess installed post-installation script returned error exit status 2
Errors were encountered while processing:
mysql-common
localepurge: Disk space freed in /usr/share/locale: 0 KiB
localepurge: Disk space freed in /usr/share/man: 0 KiB
localepurge: Disk space freed in /usr/share/gnome/help: 0 KiB
localepurge: Disk space freed in /usr/share/omf: 0 KiB
localepurge: Disk space freed in /usr/share/doc/kde/HTML: 0 KiB
Total disk space freed by localepurge: 0 KiB
E: Sub-process /usr/bin/dpkg returned an error code (1)
Alguém pode me ajudar nisso?
Tente fazer uma limpeza e, em seguida, reinstale-a.
sudo apt-get remove --purge mysql-\*
sudo apt-get install mysql-server mysql-client
Purge / Reinstall também não funcionou para mim. Eu encontrei a seguinte "solução":
Não foi possível encontrar mysql.cnf.fallback
listado nos "arquivos fornecidos" para mysql-server-5.6
/ mysql-client-5.6
nem qualquer informação adicional sobre o arquivo.
Eu copiei /etc/mysql/my.cnf
para /etc/mysql/my.cnf.fallback
(adivinhando que esse seria um arquivo de configuração "fallback" relativamente menos importante);
/etc/mysql/my.cnf
é um link simbólico, então ls /etc/mysql
agora mostra:
my.cnf.fallback -> /etc/alternatives/my.cnf
my.cnf -> /etc/alternatives/my.cnf
A instalação do pacote foi concluída sem erro (já que presumivelmente o problema "não existe" foi "resolvido").
Eu não encontrei nenhum efeito adverso (ainda).
Uma solução muito simples que eu (o noob do linux) tive que desenterrar ... é criar o arquivo.
nano /etc/mysql/my.cnf.fallback
e preencha com o conteúdo padrão do pacote mysql-common 5.7.11-0ubuntu6.
#
# The MySQL database server configuration file.
#
# You can copy this to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.
#
# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.
#
# For explanations see
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html
# This will be passed to all mysql clients
# It has been reported that passwords should be enclosed with ticks/quotes
# escpecially if they contain "#" chars...
# Remember to edit /etc/mysql/debian.cnf when changing the socket location.
# Here is entries for some specific programs
# The following values assume you have at least 32M ram
!includedir /etc/mysql/conf.d/
encontrado aqui em apt-browse.org
Eu tive o mesmo problema ao tentar limpar o mysql-server (5.7.14).
Caso os arquivos my.cnf * estejam faltando, você pode reinstalar o pacote mysql-common , e depois, você pode limpar ambos ( mysql-server & amp; mysql -common )
Esses arquivos my.cnf * pertencem ao pacote mysql-common (veja abaixo):
$ dpkg -L mysql-common | grep cnf
/etc/mysql/my.cnf.fallback
/etc/mysql/conf.d/mysql.cnf
1. Reinstale o mysql-common
apt-get install --reinstala o mysql-common
purga do apt-get mysql-common
Eu verifiquei minha pasta /etc/mysql/
e descobri que ela estava completamente vazia, além de uma subpasta vazia conf.d
.
cd /etc/
# you need to delete the empty mysql folder otherwise the ln below creates the link inside the existing mysql folder
sudo rm -r mysql
sudo ln -s ./mysql.bak/ mysql
então (cortesia deste link este link )
sudo dpkg --configure -a
e agora tudo parece bem.
O link acima também menciona --force-depends
, mas eu não precisava disso. Ele também menciona apt-get -f install
, mas novamente eu não precisava disso.
Como observado por charneykaye nos comentários, essa abordagem pode falhar se houver alguns processos mysql
em segundo plano. Eu usei:
emil-mint-desktop ~ # ps -aef | grep mysql
root 6682 1 0 16:45 ? 00:00:00 sudo mysqld_safe --skip-grant-tables
root 6683 6682 0 16:45 ? 00:00:00 /bin/sh /usr/bin/mysqld_safe --skip-grant-tables
mysql 7046 6683 0 16:45 ? 00:00:01 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib/mysql/plugin --user=mysql --skip-grant-tables --log-error=/var/log/mysql/error.log --pid-file=/var/run/mysqld/mysqld.pid --socket=/var/run/mysqld/mysqld.sock --port=3306 --log-syslog=1 --log-syslog-facility=daemon --log-syslog-tag=
root 21046 9812 0 17:32 pts/5 00:00:00 grep --color=auto mysql
Matou os 3 primeiros processos (o último é a própria chamada grep
!) usando:
kill -9 6682 8883 7046
Em seguida, remova tudo o que está relacionado com mysql
:
apt remove --purge mysql-\*
apt autoremove
apt autoclean
e, em seguida, instale:
apt install mysql-server
Então funcionou.
Versões:
apt
por apt-get
de algumas outras versões. Eu encontrei uma solução fácil para isso:
Primeiro passo: apt-get install mysql-common --reinstall
Segundo passo: apt-get install mysql-server --reinstall
E funciona!
Depois de tentar todas as respostas acima, consegui corrigir este problema com:
sudo rm /etc/rc5.d/S03mysql
Em seguida, foi possível executar:
sudo apt purgar mysql-server mysql-server-5.7 mysql-server-core-5.7
sudo apt-get -f instalar o mysql-server --fix-missing -fix-broken