A instalação do MySQL no Ubuntu 16.4: nenhum prompt de senha root e nenhuma pasta 'mysql' criada

1

Meu disco rígido do servidor travou e infelizmente meu backup do MySQL (que ocorre uma vez por dia) estava faltando alguns dados importantes, mas eu tenho os arquivos da pasta /var/lib/mysql .

Na minha nova instalação no Ubuntu 16.4, instalei o MySQL com sucesso e tentei copiar os arquivos do antigo /var/lib/mysql para a nova instalação, no entanto encontrei problemas e decidi reinstalar o MySQL.

Eu segui estas instruções para desinstalar completamente e reinstalar o MySQL , mas agora quando eu tente instalar o MySQL eu vejo esta saída:

user@computer:~$ sudo apt-get install mysql-server mysql-client
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    The following NEW packages will be installed
      mysql-client mysql-server
    0 to upgrade, 2 to newly install, 0 to remove and 0 not to upgrade.
    Need to get 0 B/20.2 kB of archives.
    After this operation, 317 kB of additional disk space will be used.
    Selecting previously unselected package mysql-client.
    (Reading database ... 213412 files and directories currently installed.)
    Preparing to unpack .../mysql-client_5.7.12-0ubuntu1_all.deb ...
    Unpacking mysql-client (5.7.12-0ubuntu1) ...
    Selecting previously unselected package mysql-server.
    Preparing to unpack .../mysql-server_5.7.12-0ubuntu1_all.deb ...
    Unpacking mysql-server (5.7.12-0ubuntu1) ...
    Setting up mysql-client (5.7.12-0ubuntu1) ...
    Setting up mysql-server (5.7.12-0ubuntu1) ...

No entanto:

  • Nenhum prompt aparece de qualquer tipo, perguntando sobre a configuração do banco de dados OU definindo uma senha para o MySQL root user
  • Nenhuma pasta /etc/mysql/ foi criada
  • Nenhuma pasta /var/lib/mysql/ foi criada

Ao tentar desinstalar o mysql-common , vejo o seguinte erro:

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-client : Depends: mysql-client-5.7 but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.

Como posso instalar o MySQL corretamente novamente com os prompts e pastas corretas, ou como posso encontrar o conteúdo padrão da pasta /etc/mysql/ e /var/lib/mysql/ para configurá-lo manualmente?

    
por Ben 11.05.2016 / 10:35

1 resposta

1

Os seguintes comandos funcionaram para desinstalar e reinstalar o MySQL (nesta ordem, embora eu não saiba se alguns desses comandos são excedentes):

  • sudo apt-get install mysql-client
  • sudo apt-get install mysql-server
  • sudo apt-get purge dbconfig-mysql
  • sudo apt-get purge mysql-common
  • sudo apt-get install mysql-server
  • sudo apt-get install mysql-client
por Ben 11.05.2016 / 11:08