How to Backup MariaDB Database on Ubuntu

In this article, we will guide you through the process of backing up your MariaDB database on Ubuntu. It is essential to regularly back up your database to prevent data loss in the case of hardware failure, accidental deletion, or other unforeseen circumstances. By following these simple steps, you can ensure that your data is safe and easily recoverable.

Step 1: Install MariaDB Backup Tool

The first step in backing up your MariaDB database is to install the MariaDB backup tool. You can do this by running the following command in your terminal:

sudo apt install mariadb-backup

This command will download and install the MariaDB backup tool on your Ubuntu system.

Step 2: Create a Backup Configuration File

Next, you will need to create a backup configuration file for the MariaDB backup tool. You can do this by creating a new file with the following command:

sudo nano /etc/mysql/backup.cnf

Once the file is open, you can add the following configuration options:

[client]
user=root
password=your_password

Replace your_password with your actual MariaDB root password. Save and close the file once you have added the necessary information.

Step 3: Perform the Backup

Now that you have installed the MariaDB backup tool and created the backup configuration file, you can perform the backup of your database. Run the following command in your terminal:

mariabackup --backup --target-dir=/var/www/backup

This command will create a backup of your MariaDB database and store it in the specified directory. You can change the /var/www/backup path to any location of your choice.

Step 4: Verify the Backup

Once the backup process is complete, it is essential to verify that the backup was successful. You can do this by running the following command:

mariabackup --prepare --target-dir=/var/www/backup

This command will prepare the backup for restoration and ensure that it is valid.

Step 5: Automate the Backup Process

To ensure that your database is regularly backed up, you can automate the backup process using a cron job. Create a new cron job by running the following command:

crontab -e

Then, add the following line to the file to run the backup every day at midnight:

0 0 * * * mariabackup --backup --target-dir=/var/www/backup

Save and close the file to activate the cron job.

Conclusion

Backing up your MariaDB database on Ubuntu is a crucial task to ensure the safety and integrity of your data. By following the simple steps outlined in this guide, you can easily create regular backups of your database and protect yourself from potential data loss. Remember to test your backups regularly and have a solid disaster recovery plan in place to mitigate any unforeseen data loss events.