• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

How to extract webfiles and databases from Plesk Backups.

PaddingtonC

Basic Pleskian
My Plesk backups a FTPted to a backup server where I have been trying to extract the web-files and database according to the 2nd method in KB http://kb.parallels.com/en/1757

My backup file is a tar file as shown :
backup_1206042321.tar: POSIX tar archive (GNU)

This makes it difficult to proceed with the steps below because munpack gives an error nothing to read from standard input.


]# zcat DUMP_FILE.gz > DUMP_FILE
# cat DUMP_FILE | munpack

In result you get the set of tar and sql files that contain domains' directories and databases. Untar the needed directory. For example if you need to restore the httpdocs folder for the DOMAIN.TLD domain:
# tar xvf DOMAIN.TLD.htdocs


How can I extract webfiles and databases from the the .tgz Plesk backup?
 
From your SHELL:

cd /var/lib/psa/dumps

Then,

ftp yourftpserver.com
get backupfile.tar.gz
quit

Then,

tar xvfz filename.tar.gz

Thereafter, you can go to the plesk admin panel to restore each domain independently or you can navigate to the respective folders through shell to get the db and the rest of the files.
 
Back
Top