Home > Database > Mysql Tutorial > body text

What is mysql physical backup?

WBOY
Release: 2023-05-28 17:04:06
forward
1109 people have browsed it

Explanation

1. Physical backup is divided into two types: cold backup and hot backup.

2. Compared with logical backup, its advantage is that backup and recovery are faster, because the principle of physical backup is based on file cp.

Example

There are many methods for hot backup of myisam storage engine. The essence is to add a read lock to the table to be backed up, and then cp the data file to the backup directory.

Use the mysqlhotcopy tool

// mysqlhotcopy 是 MySQL 的一个自带的热备份工具  
shell> mysqlhotcopy db_name [/path/to/new_directory]
Copy after login

The above is the detailed content of What is mysql physical backup?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!