Hostwinds 튜토리얼

에 대한 검색 결과:


Restic으로 복원 수행

태그 : Restic,  Backups 

RESTIC이있는 프로세스와 마찬가지로 복원을 수행하는 것은 쉽고 빠릅니다.

restic과의 상호 작용과 마찬가지로 REPO를 먼저 초기화하여 repo 내에서 작업을 수행해야합니다.

복원 명령에는 아래 그림과 같이 여러 옵션을 사용할 수 있습니다.

아래 명령은 주어진 스냅 샷 (RESTIC Snapshots에서 검색)에서 복원됩니다.LocationToreStoretoto로 PathBeingrestoresto를 복원합니다

restic restore $SnapshotID --target $LocationToRestoreTo --path $PathBeingRestored

아래 명령은 주어진 스냅 샷 (RESTIC Snapshots에서 검색)에서 복원됩니다.LocationToRestoreto에 Pathofilebeingrestorest를 복원합니다

restic restore $SnapshotID --target $LocationToRestoreTo --include $PathtoFileBeingRestored

아래 명령은 주어진 스냅 샷 (RESTIC Snapshots에서 검색)에서 복원됩니다.locationToreStoreTo로 PathBeingresto를 복원합니다.FileOrPathbeingExcluded에서 파일 / 폴더를 제외합니다.

restic restore $SnapshotID --target $LocationToRestoreTo --path $PathBeingRestored --exclude $FileOrPathBeingExcluded

노트 : 복원을 사용하면 전체 파일 경로가 복원됩니다. 의미 아래 명령을 실행 중이면 /tmp/restore/home/kbuser/public_html/index.php로 파일을 복원합니다.

restic restore 7e83abo1 --target /tmp/restore --path /home/kbuser/public_html/index.php

이 문제를 피하고 복원 후 콘텐츠를 이동 해야하는 경우 복원 경로를 지정할 수 있습니다. / 아래의 예에서 볼 수 있습니다.

restic restore 7e83abo1 --target / --path /home/kbuser/public_html/index.php

위의 예에서 파일 index.php는 원래 경로로 복원됩니다. /home/kbuser/public_html/index.php

작성자 Hostwinds Team  /  유월 5, 2021