How to Install Latest MariaDB Database on Ubuntu 22.04



How to Install Latest MariaDB Database on Ubuntu 22.04

How to Install Latest MariaDB Database on Ubuntu 22.04

MariaDB is a free, open-source, and fork of the popular MySQL database system. It is a widely used relational database management system made by the original developers of MySQL. It is specially designed for scalability and mission-critical deployments. By default, the MariaDB package is available in the default repository of all major Linux distributions. At the time of writing this tutorial, the latest version of MariaDB is 10.8. Every major release will be maintained at least 5 years. So MariaDB 10.8.0 will be supported until 2027.

In this video, we will show you how to install MariaDB 10.8 on Ubuntu 22.04 server.

Useful Links:
VPS/VDS – https://www.mivocloud.com/

Commands Used:
apt-get install software-properties-common gnupg2 -y
apt-key adv –fetch-keys ‘https://mariadb.org/mariadb_release_signing_key.asc’
add-apt-repository ‘deb [arch=amd64] http://mariadb.mirror.globo.tech/repo/10.8/ubuntu jammy main’
apt-get update -y
apt-get install mariadb-server mariadb-client -y
systemctl start mariadb
systemctl enable mariadb
mysql_secure_installation
mysql -u root -p
SELECT VERSION();