• Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
    Thank you in advance for your patience and understanding on the matter.

Unpacking dump file ?

N

normanu

Guest
Is it possible to unpack a psadump file ?
When trying to list its contents I get,

tar: This does not look like a tar archive
tar: Skipping to next header
tar: Archive contains obsolescent base-64 headers

gzip: stdin: invalid compressed data--crc error
tar: Child returned status 1
tar: Error exit delayed from previous errors


Doesn't look to good ?
How is this thing packed if not with tar ?
 
if you dump from a psa mysql DB and now you want to restore it, you can use this command:

for dump:
mysqldump -u<admin> -p<psa pass> -h<host> <dbname>> /home/psaDB <location you want store dump file>

for restore:
mysqldump -u<admin> -p<psa pass> -h<host> <dbname> < /home/psaDB <location you want restore db file>

BUT
if you want to unpack your dump file, you can normally restore it!

tar -xvf <file name>.tar
 
Back
Top