• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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