• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Resolved Backup Manager - restoring /private

bekway

New Pleskian
I created and stored some important files in a private password-protected folder under mydomain/files/private (webdav). I lost an important file stored in this folder. I cannot see how to retreive it from my whole server backup, this folder does not appear on either site files nor domains when using Backup Manager
 
Hello. By default, password-protected directories created in site's docroot. Also you could try to find these file directly in backup archives by the following command:
Code:
find /var/lib/psa/dumps -name *.tgz | grep mydomain | grep -E 'user\-data|apache\-files' | while read -r line; do echo "$line"; tar -tvm -zf "$line" | grep files/private; done;
 
Back
Top