Install mariadb on ubuntu 22. 04

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.

Leave a Comment

Only people in my network can comment.