How to Install MariaDB on CentOS 7

MariaDB is a popular open-source database management system, often used as a replacement for MySQL. This step by step guide will walk you through the installation of MariaDB on CentOS 7.

Updating System Packages

Start by updating your system’s packages:

sudo yum update -y

Installing MariaDB

Install MariaDB using the CentOS package manager:

sudo yum install mariadb-server mariadb -y

Starting and Enabling MariaDB

Enable and start the MariaDB service:

sudo systemctl start mariadb
sudo systemctl enable mariadb

Securing MariaDB

Run the `mysql_secure_installation` script to secure your database:

sudo mysql_secure_installation

Follow the prompts to set a root password, remove anonymous users, disallow root login remotely, and remove the test database.

Accessing MariaDB

Access the MariaDB shell:

mysql -u root -p

Enter your root password when prompted.

MariaDB is now installed and secured on your CentOS 7 server. It’s ready for use in your applications or websites that require a database management system.

About the author

Technical Sahil

Sahil Dhamija is a visionary entrepreneur and tech enthusiast, proudly owning multiple companies across India, the US, the UK, and the UAE. As the founder of AInventions Technologies LLC, DigitalMarkethink Solutions LLC, WebReinvent Technologies LLC, BusinessMate Software Solutions LLC, and co-founder of Hostyaga FZE LLC, Sahil is a dynamic leader shaping the future of technology and digital marketing.

Apart from leading his businesses, Sahil is a passionate tech YouTuber, sharing insights and tutorials on various technological topics. He also serves as the CTO at Vayuna Corporate Travels Pvt Ltd and as Product Head at Vayuna Voicetech Pvt Ltd, where he oversees cutting-edge solutions in corporate travel and voice technology. Additionally, Sahil is a creative force in the film industry, producing films through Gentle Breeze Films Pvt Ltd.

Driven by innovation and creativity, Sahil continues to push boundaries in technology, media, and business.

View all posts

Leave a Reply

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