Trying to import a compressed confluence cloud backup to our server. The compressed file is 63gb. The import failed after about 25 minutes. The error read
Import failed. Check your server logs for more information. Error unzipping file: Unexpected end of ZLIB input stream
Any suggestions?
I am having the same problem. My backup file is a space data I want to restore in another confluence instance. It has about 2gb. I tried through upload and also placing the zip into the restore folder. Both give me the same error message: Error unzipping file: Unexpected end of ZLIB input stream. This file was exported through Confluence interface.
I am facing the same issue with a 8GB space. I tried restoring from the restore server folder, then tried from uploading a local file but nothing works... any other ideas, folks?
Thanks,
Dimitar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Any solution to this problem, my backup file is around 10GB, and tried to restore it through restore dir but getting the error.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi everyone and happy new year,
I have the same problem, when I try to restore my confluence using a zip file. The only option that I have is from Backup & Restore option in the website.
Why during the process appears that error message? Is the zip file corrupt? I have uncheck the https option that Ann Worley mentioned and it is stilll happening.
Thank you in advance.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
it seems the export is actually a tar.gz
extract it and recompress as zip to enable using the archive for restoring from backup
mv backup.zip backup.tar.gz
mkdir uncompressed
pushd uncompressed
tar xvfz ../backup.tar.gz
zip -r ../backup.zip *
popd
rm -rf uncompressed
try now, with backup.zip
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I suggest turning off compression in Confluence prior to the import. I found a JDK bug that indicates that GZip compression can cause that error: Unexpected end of ZLIB when using GZIP on some files
The bug is intermittent but we could be running into something similar.
To turn off compression in Confluence, go to Admin>General Configuration, scroll down to the bottom, click Edit on the right, and uncheck the box next to Compress HTTP Responses.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Uploading the zip file through the web ui, rather than directly onto the server did the trick. Very strange...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Sebastian:
I am having the same issue? So what do you meant by uploading the zip file through the web ui?
Chang
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can import from a file on the server or by uploading the file using the web interface. "Backup & Restore => Upload a site or space export file"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.