Blog/content/posts/2024/mysql/backup.md
2024-11-24 03:41:00 +03:00

15 lines
386 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "🗄️ Бэкап MySQL"
date: 2024-11-24T02:52:50+03:00
draft: false
tags: [mysql, mariadb, tips]
---
А для того чтобы сделать дамп всех баз данных,
необходимо использовать параметр `--all-databases` (или сокращенно `-A`), пример:
```sh
mysqldump --all-databases > dump-data.sql
```