买了商业版的用户,可以用商业的备份工具来备份MYSQL数据库, 我来示范下如何备份与恢复。其中包括全量备份和增量备份。
买了商业版的用户,可以用商业的备份工具来备份MYSQL数据库, 我来示范下如何备份与恢复。其中包括全量备份和增量备份。
备份方法
全量:
增量:
把增量合并到全量,,已形成全新的全量。
mysqlbackup --backup-dir="j:\mysqlbackup" --incremental-backup-dir="j:\mysqlbackup_inc" apply-incremental-backup
恢复方法。
停掉MYSQLD
mysqlbackup --defaults-file="H:\Program Files\MySQL\mysql-advanced-5.6.10-winx64\my.ini" --datadir="H:/Program Files/MySQL/mysql-advanced-5.6.10-winx64/data" --backup-dir="j:\mysqlbackup" copy-back
如果出现以下信息,代表恢复成功,否则失败。
mysqlbackup completed OK!
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn