MariaDB Upgrade from 10.2 to 10.4

Verify if MariaDB 10.2 is installed rpm -qa|grep -i maria|grep "\-10.2." First you need to change the MariaDB repo and replace it with MariaDB 10.4 repo: sed -i 's/10.2/10.4/g' /etc/yum.repos.d/mariadb.repo Second remove MariaDB 10.2 : systemctl stop mariadb mysql mysqld systemctl disable mariadb rpm --nodeps -ev MariaDB-server Third Install MariaDB 10.4 : yum clean all […]

Read More

MariaDB Upgrade to the new version

Check which version of MariaDB is installed on your server rpm -qa|grep -i maria MariaDB Repository Changes Modify repo file to the version you want to upgrade Edit File: /etc/yum.repos.d/mariadb.repo [mariadb] name = MariaDB baseurl = http://yum.mariadb.org/10.2/centos7-amd64 gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1 * Modify 10.2 with the version you want to upgrade Example for upgrade to MariaDB 10.5 […]

Read More