Install MariaDB 10.3 on CentOS 7

MariaDB is an Open Source MySQL drop-in replacement. MariaDB provides a repository for various operating systems at

To install MariaDB 10.3 on CentOS 7, create a file

vi /etc/yum.repos.d/MariaDB.repo

Add

Advertisement

[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.3/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1

Install the MariaDB server and client with

yum install MariaDB-server MariaDB-client

Enable MariaDB to start on boot

systemctl enable mariadb

Start MariaDB

systemctl start mariadb
Add a comment

Leave a Reply

Your email address will not be published. Required fields are marked *

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Advertisement