Comments - Upgrading from MySQL to MariaDB

11 years, 4 months ago Juris Malinens

Workaround f You are using remi repository and have conflicts when trying to install php-mysql:

yum remove mysql-server mysql-libs mysql-devel mysql*

and after You uninstalled EVERY mysql related package You need to install compat-mysql55 from remi-test repository but You should not install MySQL-libs package so You disable remi repository to install compat-mysql55 only:

yum --enablerepo=remi-test --disablerepo=remi install compat-mysql55

After that You can install MariaDB and php-mysql extension with:

yum install MariaDB* php-mysql

and it should be installed without conflicts.

 
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.