Dickens A S
Dickens A S

Reputation: 4054

MariaDB Installation RPM cyclic reference

MariaDB common and compat RPM cyclic reference

rpm -ivh MariaDB-10.1.14-centos6-x86_64-common.rpm
error: Failed dependencies:
        MariaDB-compat is needed by MariaDB-common-10.1.14-1.el6.x86_64
rpm -ivh MariaDB-10.1.14-centos6-x86_64-compat.rpm
error: Failed dependencies:
        MariaDB-common is needed by MariaDB-compat-10.1.14-1.el6.x86_64

common says it needs compat and compat says commmon is needed, is there any way to solve this?

Upvotes: 0

Views: 238

Answers (1)

Chris Maes
Chris Maes

Reputation: 37802

Yes; installing both together:

rpm -ivh MariaDB-10.1.14-centos6-x86_64-common.rpm MariaDB-10.1.14-centos6-x86_64-compat.rpm

Upvotes: 3

Related Questions