How to Take Backup Of MySQL/MariaDB and Restore it. | Linux Today

How to Take Backup Of MySQL/MariaDB and Restore it.

Written By
MRT
MANAS RANJAN TRIPATHY
Sep 19, 2018

Backup of MySQL database with the native tools is something that most the MySQL admin does. I’ll take you through the backup procedure of MySQL DB using mysqldump command. This procedure is same across all the Linux distribution.

Prerequisites:
You need a MySQLsql instance up and running. Need Privileges on that database you are trying to backup or root user password with you.

1. Take backup of a Single database on a Linux Server?

All the backing up will done by the “mysqldump” command. In this example we’ll be taking backup of DB “exampledb1 ” and the backup will be stored at “/tmp/exampledb1_exampleserver1.sql” .

mysqldump -u root -ppassword exampledb1 /tmp/exampledb1_exampleserver1.sql

MRT

MANAS RANJAN TRIPATHY

Linux Today Logo

LinuxToday is a trusted, contributor-driven news resource supporting all types of Linux users. Our thriving international community engages with us through social media and frequent content contributions aimed at solving problems ranging from personal computing to enterprise-level IT operations. LinuxToday serves as a home for a community that struggles to find comparable information elsewhere on the web.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.