Categories: Ubuntu

Install MariaDB on Ubuntu 22.04

MariaDB is an open-source relational database management server. It was released in 2009 and was developed by the makers of MySQL. Because of this, it is very easy to migrate from MySQL to MariaDB and vice versa. In this guide, we will share the process of installing MariaDB on Ubuntu 22.04 system.

Process of Installing MariaDB on Ubuntu 22.04

To install MariaDB on the Ubuntu 22.04 system, you have to follow the procedure mentioned below:

Step # 1: Update the System’s Cache

First, you need to update your system’s cache with the command that follows:

$
Sponsored
sudo apt-get update

Step # 2: Install the MariaDB Server on Ubuntu 22.04

After that, you can install the MariaDB server on your Ubuntu 22.04 system by running the following command:

$ sudo apt-get install mariadb-server

Step # 3: Verify Status of the MariaDB Server on Ubuntu 22.04

Once the MariaDB server has been installed successfully on your system, you can verify its status with the following command:

$ sudo systemctl status mariadb

The status of the MariaDB server on our system is active and running, as shown in the following image:

Sponsored

Step # 4: Confirm Version of the MariaDB Server on Ubuntu 22.04

You can further confirm the version of the MariaDB server installed on your system by running the following command:

$ mariadb –version

This command will display the version of the MariaDB server installed on your Ubuntu 22.04 system, as shown in the following image:

How To Remove MariaDB From Ubuntu 22.04

If you wish to remove the MariaDB server from your system, then you will need to run the following command:

$ sudo apt-get purge –autoremove mariadb-server

Conclusion

This article taught you the complete procedure for installing the MariaDB server on your Ubuntu 22.04 system. Apart from that, we also shared with you the command with which you can easily uninstall this server from your system whenever you want.

Ubuntu Server Admin

Recent Posts

How to Fix VMware’s “Could not open /dev/vmmon” Error on Ubuntu

You’ve recently installed VMware Workstation on your Ubuntu system and encountered the frustrating “Could not…

4 hours ago

How to Fix Ubuntu 404 Errors While Fetching Dependencies

Have you ever found yourself staring at a terminal full of 404 errors while trying…

4 hours ago

How to Fix ‘Please Install All Available Updates’ Error When Upgrading Ubuntu 18.04 to 20.04 LTS

One particularly frustrating error that many users face when trying to upgrade from Ubuntu 18.04 …

4 hours ago

How to fix “Release is not valid yet” Error in Docker Containers

In the world of containerization, time synchronization issues can create unexpected roadblocks when working with…

4 hours ago

How to fix “Externally Managed Environment” Pip Errors on Ubuntu

If you’ve recently upgraded to Ubuntu 23.04 or newer, you might have encountered a frustrating…

4 hours ago

Ubuntu now officially supports NVIDIA Jetson: powering the future of AI at the edge

Canonical announces the General Availability of Ubuntu for the NVIDIA® Jetson Orin™ for edge AI…

11 hours ago