• 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!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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.

Resolved Manually extracting files from a Plesk backup

Richard18

Basic Pleskian
Plesk 12.5.30 Update #56
Ubuntu 14.04.5

I'm struggling to rescue some files from a Plesk backup, we do a weekly backup to an external FTP server, the files are split at 2GB in size.

When I try and restore the subscription it eventually fails, in the pmmcli.log is: <errmsg>Unable to export file as file: FTP network error</errmsg>

So maybe in future I should reduce the file size to 512MB so that it's less likely for the transfer to fail, but right now I need to extract some files and get a site rolled back.

I can download all of the *.tar* files from my FTP server manually to my own computer, but I can't figure out a way to access the files, none of the Windows apps I've tried that say they can access spanned tar files will actually see anything other than the files contained in the first *.tar file.

I've also tried tar on the Linux command line "tar -xMf ***.tar", it extracts the files from the first tar file, but then when I do "n ***.tar1" it says it can't find any continuation of files and fails.

What can I do to reconstruct all of the tar files into just 1 file and access the contents?
 
Hi,

First make sure that you create the specific directory that you want to extract into by using:
mkdir -p /newfoldername

tar -xvf filename.tar -C /newfoldername

Regards,
 
tar -xvf filename.tar -C /newfoldername

I'm afraid that would just extract the data from the first tar file, I also need the data from the other tar parts.

I found a solution, just needed to use cat to put the file back together.

Renamed the files to something easy to script, xa through xn, then ran:

Code:
cat x{a..n} > server.tar

So, all sorted!
 
Last edited:
Back
Top