From 55c6f34cdf35c6c088dfd81b97bf5e454020c432 Mon Sep 17 00:00:00 2001 From: tianci li <86754294+jimcat8@users.noreply.github.com> Date: Sun, 17 Nov 2024 22:41:18 +0800 Subject: [PATCH] Change terminology and expand some content (#2495) * Change terminology and expand some content * Complete update --- docs/books/admin_guide/09-backups.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/docs/books/admin_guide/09-backups.md b/docs/books/admin_guide/09-backups.md index 3d35e063e..4eb8e7b07 100644 --- a/docs/books/admin_guide/09-backups.md +++ b/docs/books/admin_guide/09-backups.md @@ -86,18 +86,20 @@ In addition to these issues, system administrators should also consider factors Before a system change, it can be useful to make a backup. However, there is no point in backing up data every day that only changes every month. -### Restoration methods +### Recover methods -Depending on the utilities available, performing several types of restorations will be possible. +Depending on the utilities available, performing several types of recover will be possible. -* **Complete restoration**: trees, ... -* **Selective restoration**: part of tree, files, ... +In some relational database management systems, the corresponding operations of "recover" (sometimes "recovery" is used in documentation) and "restore" are different, which requires you to consult the official documentation for further information. This basic document will not go into too much detail regarding this part of RDBMS. -It is possible to restore a whole backup or only a part of it. However, when restoring a directory, the files created after the backup are not deleted. +* **Full recover**: Data recovery based on Full backup or "Full backup + Incremental backup" or "Full backup + Differential backup". +* **Selective recover**: Data recovery based on Selective backup (Partial backup). + +It is not recommended to directly delete directories or files in the currently active operating system before performing a recovery operation (unless you know what will happen after deletion). If you don't know what will happen, you can perform a 'snapshot' operation on the current operating system. !!! Tip - To recover a directory as it was before the backup, it is necessary to completely delete its contents before launching the restoration. + For security reasons, it is recommended that you store the restored directory or file in the /tmp directory before performing the recovery operation to avoid situations where old files (old directory) overwrite new files (new directory). ### The tools and related technologies