Eu li várias postagens aqui e todas afirmam executar os seguintes comandos:
- Apt-get -f remove * *
- atualização apt-get
- atualização apt-get
- apt-get -f install * *
Eu os vi em várias ordens, etc., e nenhum está resolvendo, meu problema. Não importa o que eu tente, recebo:
apt-get -f install mysql-server Reading package
lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
mysql-server-5.5 mysql-server-core-5.5
Suggested packages:
tinyca mailx
The following NEW packages will be installed:
mysql-server mysql-server-5.5 mysql-server-core-5.5
0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/14.9 MB of archives.
After this operation, 53.0 MB of additional disk space will be used.
Do you want to continue [Y/n]? y
Preconfiguring packages ...
Selecting previously unselected package mysql-server-core-5.5.
(Reading database ... 83134 files and directories currently installed.)
Unpacking mysql-server-core-5.5 (from .../mysql-server-core-5.5_5.5.29-
0ubuntu0.12.04.1_amd64.deb) ...
Selecting previously unselected package mysql-server-5.5.
Unpacking mysql-server-5.5 (from .../mysql-server-5.5_5.5.29-0ubuntu0.12.04.1_amd64.deb)
...
Selecting previously unselected package mysql-server.
Unpacking mysql-server (from .../mysql-server_5.5.29-0ubuntu0.12.04.1_all.deb) ...
Processing triggers for man-db ...
Processing triggers for ureadahead ...
Setting up mysql-server-5.5 (5.5.29-0ubuntu0.12.04.1) ...
Setting up mysql-server-5.5 (5.5.29-0ubuntu0.12.04.1) ...
invoke-rc.d: initscript mysql, action "start" failed.
invoke-rc.d: initscript mysql, action "start" failed.
dpkg: error processing mysql-server-5.5 (--configure):
subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of mysql-server:
mysql-server depends on mysql-server-5.5; however:
Package mysql-server-5.5 is not configured yet.
dpkg: error processing mysql-server (--configure):
No apport report written because the error message indicates its a followup error from a
No apport report written because the error message indicates its a followup error from a
previous failure.
Errors were encountered while processing:
mysql-server-5.5
mysql-server
Eu tentei várias coisas na semana passada e não consigo resolver isso, qualquer assistência seria apreciada. Eu notei a mensagem:
O pacote mysql-server-5.5 ainda não está configurado.
e ainda tenho que configurar isso, por isso estou trabalhando nesse aspecto. Qualquer outra assistência será muito apreciada.
sudo invoke-rc.d mysql start Rather than invoking init scripts through /etc/init.d, use the service(8) utility, e.g. service mysql start Since the script you are attempting to invoke has been converted to an Upstart job, you may also use the start(8) utility, e.g. start mysql start: Job failed to start invoke-rc.d: initscript mysql, action "start" failed.
dpkg: dependency problems prevent configuration of mysql server:
mysql-server depends on mysql-server-5.5; however:
O pacote mysql-server-5.5 ainda não está configurado. Eu tropecei neste tópico que me levou a esse tópico antigo, que continha a resposta que eu precisava desesperadamente. Eu tive que correr dpkg -S etc/mysql
para obter as informações e descobri que o mysql-common ainda estava instalado e causando dores de cabeça para mim.
aptitude purge mysql-server --purge-unused
para limpar os arquivos. Isso funcionou como um encanto. Espero que esta solução ajude outra pessoa no caminho!
sudo invoke-rc.d mysql start
sua pergunta.