Não é possível instalar o MariaDB no Ubuntu 16.04.2

2

Quando eu tento instalar o MariaDB Server no meu servidor Ubuntu 16.04.2 com o apt mariadb-server , obtenho a seguinte resposta:

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:
 mariadb-server-10.0 : Depends: libdbi-perl but it is not going to be installed
                       Depends: mariadb-client-10.0 (>= 10.0.29-0ubuntu0.16.04.1) but it is not going to be installed
                       Recommends: libhtml-template-perl but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Eu tentei em outra instância (máquina virtual, mesmo HW) do mesmo sistema operacional. Lá eu não tenho problemas e o MariaDB parece estar se instalando bem.

Você pode sugerir como posso corrigir o problema e instalar o MariaDB-server no meu Ubuntu?

Eu já tentei:

sudo apt-get autoclean
sudo apt-get autoremove
sudo apt update
sudo apt-get --fix-broken install
sudo apt upgrade
sudo dpkg --configure -a

Obrigado.

    
por Mobby Dick 19.04.2017 / 22:13

1 resposta

0

Você já tentou incluir as dependências? Assim:

sudo apt-get install mariadb-server libdbi-perl mariadb-client-10.0

Já existe uma pergunta semelhante sobre isso. Dê uma olhada neste link: Como resolvo dependências não satisfeitas depois de adicionar um PPA?

Atenciosamente

    
por Renato Aloi Batista 19.04.2017 / 22:57