Comments - Drop-in replacement on Debian

11 years, 4 months ago Kristian Nielsen

There is a bug report for this to track fixing it:

https://mariadb.atlassian.net/browse/MDEV-3882

The basic problem is that there are two versions of package libmysqlclient18, the standard Debian package and the package from the MariaDB repo. And apt-get considers the standard Debian package as having the higher version and prefers to install that.

So one work-around is to explicitly request the MariaDB version:

apt-get install mariadb-server-5.5 libmysqlclient18=5.5.28-mariadb1wheezy

Background: It used to be that this was not an issue, as Debian and Ubuntu normally do not put newer upstream versions into released distro versions. Thus the MariaDB version would always be newer, and this problem does not occur.

But Oracle has implemented its own ideas of security fix policies for MySQL, which means that details of security patches are kept proprietary. This makes it impossible for distros to backport security fixes, so they have to instead put new upstream releases into stable distro versions. As a side effect, the MariaDB versions can now lag behind the standard distro versions.

 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.