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

Canonical announces 12 year Kubernetes LTS

Canonical’s Kubernetes LTS (Long Term Support) will support FedRAMP compliance and receive at least 12…

21 hours ago

Ubuntu Weekly Newsletter Issue 878

Welcome to the Ubuntu Weekly Newsletter, Issue 878 for the week of February 2 –…

2 days ago

How your feedback shapes the way we support open source software

At Canonical, we firmly believe that delivering an outstanding, customer-centric support experience is impossible without…

2 days ago

How To Install osTicket v1.14 On Ubuntu 20.04

I want to share how to install osTicket v1.14 for Ubuntu 20.04 server. osTicket written…

3 days ago

How To Install WordPress On Ubuntu 20.04

Now I want to share how to install WordPress on ubuntu 20.04 server. WordPress is…

3 days ago

How To Install DNS Server (Bind9) On Ubuntu 20.04

Now I want to share the DNS server installation process on your Ubuntu 20.04 server.…

3 days ago