I use CircleCI for as continuous integration solution, I am trying to install MariaDB 10.1.20.
And I run this command:
sudo DEBIAN_FRONTEND=noninteractive aptitude install -y mariadb-server
But I get this error:
Setting up mariadb-server-5.5 (5.5.54-1ubuntu0.14.04.1) ...
Stopping MariaDB database server mysqld
...done.
dpkg: error processing package mariadb-server-5.5 (--configure):
subprocess installed post-installation script returned error exit status 1
Setting up libdbd-mysql-perl (4.025-1ubuntu0.1) ...
Setting up libhtml-template-perl (2.95-1) ...
dpkg: dependency problems prevent configuration of mariadb-server:
mariadb-server depends on mariadb-server-5.5 (>= 5.5.54-1ubuntu0.14.04.1); however:
Package mariadb-server-5.5 is not configured yet.
dpkg: error processing package mariadb-server (--configure): dependency problems - leaving unconfigured Processing triggers for libc-bin (2.19-0ubuntu6.7) ... Processing triggers for ureadahead (0.100.0-16) ... No apport report written because the error message indicates its a followup error from a previous failure. Errors were encountered while processing: mariadb-server-5.5 mariadb-server E: Sub-process /usr/bin/dpkg returned an error code (1) A package failed to install. Trying to recover: Setting up mariadb-server-5.5 (5.5.54-1ubuntu0.14.04.1) ... * Stopping MariaDB database server mysqld ...done. dpkg: error processing package mariadb-server-5.5 (--configure): subprocess installed post-installation script returned error exit status 1 dpkg: dependency problems prevent configuration of mariadb-server: mariadb-server depends on mariadb-server-5.5 (>=
5.5.54-1ubuntu0.14.04.1); however: Package mariadb-server-5.5 is not configured yet.
dpkg: error processing package mariadb-server (--configure): dependency problems - leaving unconfigured Errors were encountered while processing: mariadb-server-5.5 mariadb-server
Any ideas?
dpkg --configure -a
. If there is a real dependency problem, the command will tell you. – Jos May 09 '17 at 09:43I have nothing. This means that I haven't got the dependency problem. Right ?
– Speedy May 09 '17 at 12:38