Targeted at DBAs, this article offers an overview of CLI utilities for MySQL backup. The commands described can be implemented in Linux Shell (.sh) scripts, as well as in Windows cmd (.bat) and PowerShell (.ps1) scripts. In addition to creating backups, dumps and exporting data, we’ll also delve into MySQL restore commands.
Uncategorized
MySQL: From Dumps to Restores
A MySQL dump is a file that contains SQL commands, which, when executed, would lead to the recreation of the MySQL database at the moment of the dump’s export. Essentially, a MySQL dump database is a logical MySQL backup database.
mysqldump
is a utility that creates a MySQL dump. It is part of MySQL and MariaDB and gets installed alongside the MySQL client.
如何在Windows上备份MySQL数据库
因为有几种方法可以在Windows上备份MySQL数据库,本文将回顾所有不同的选项,以便您选择适合您的方法。本文仅限于Microsoft Windows服务器上的MySQL数据库备份。如果您使用的是基于Linux的操作系统,请参阅如何在Linux中自动化MySQL数据库备份。
如何在 Linux 中自动化 MySQL 数据库备份
本博客文章所述解决方案适用于任何 Linux 发行版:Ubuntu、Red Hat、Open SUSE、CentOS、Debian、Oracle Linux 等。然而,包安装命令可能会有所不同。
自动备份 MySQL 服务器数据库对于防止数据丢失至关重要。要正确自动化备份,您需要按照以下步骤执行:
- 创建数据库备份
- 压缩备份
- 加密压缩文件
- 使用 FTP、Dropbox、AWS、Google Drive 等将备份发送到云存储
- 收到备份结果的邮件通知
- 创建备份计划
- 删除旧备份
Guide to Setting Up Permissions for Database Backup and Restore
In order to create database backups through SqlBak or SqlBackupAndFtp, the user specified when adding the connection must have sufficient privileges to perform the backup operation. Although you can use a superuser to create a backup without any problems, it is considered best practice to create a separate user specifically for this purpose.
Below are examples of SQL scripts for creating a backup user, as well as the necessary privileges for database recovery.
Please note that it is not necessary to grant recovery permissions immediately. This can be done when you need to restore the database.