🦭
Database & Messaging

MariaDB

MySQL-compatible relational database

🐧 Linux🍎 Mac🪟 Windows
Reviewed: Tested on: Kubernetes 1.29 · Terraform 1.8 · Ubuntu 22.04

What is this?

MariaDB is a drop-in replacement for MySQL with the same SQL commands.

📥

Step 01

Install MariaDB

(01)Install MariaDB

Linux
1sudo apt-get install -y mariadb-server
2sudo systemctl enable mariadb && sudo mysql_secure_installation

Step 02

Verify

(01)Verify installation

Linux
1sudo mysql -e 'SELECT VERSION();'