Unpacking large .ZIP archives
Using Bamboo
- Configuring plans
- Linking to source code repositories
- Triggering builds
- Using stages in a plan
- Jobs and tasks
- Sharing artifacts
- Working with builds
- Deployment projects
- Getting feedback
- Integrating Bamboo with other applications
- Managing your user profile
- Bamboo variables
- Bamboo permissions
- Quick filters for Bamboo
- Unpacking large .ZIP archives
- Personal access tokens
On this page
Related content
- Downloading Bamboo remote agent installer fails with ZipException: invalid entry compressed size.
- Bamboo fails to import with EOF exception
- BambooImportException: Import file is corrupted. Can't find any files to import when importing to Bamboo
- Internal Server Error while importing Bamboo export zip: java.lang.IllegalStateException: getAttribute: Session already invalidated
- Bamboo startup or runtime error due to ORA-00257 archiver error
- Enabling GZIP compression
- Bamboo export and backup fails
- Bamboo Crashes Due to Insufficient Disk Space and Truncated bamboo.cfg.xml File
- OutOfMemory Errors in Bamboo Server or Agents
- Bamboo fails with "No space left on device" due to large artifacts
We noticed that the TrueZIP archiver used by Bamboo might be incompatible with some binaries for archives exceeding 4 GB. In order to extract files from a large archive, use the following script:
TrueZIP extractor
#! /bin/sh
TRUEZIP_JAR=truezip-samples-7.7.9-jar-with-dependencies.jar
if [ ! $# -eq 1 ]; then
echo "Usage:"
echo " $0 [bambooCloudExportFile]"
exit 1
fi
BAMBOO_EXPORT_FILE=$1
if [ ! -f $BAMBOO_EXPORT_FILE ]; then
echo Can not access $BAMBOO_EXPORT_FILE
exit 1
fi
if [ ! -f $TRUEZIP_JAR ]; then
echo Downloading TrueZip JAR ...
curl -s https://repo1.maven.org/maven2/de/schlichtherle/truezip/truezip-samples/7.7.9/$TRUEZIP_JAR -o $TRUEZIP_JAR
fi
if [ -d bamboo-home ]; then
echo Directory bamboo-home exists, please remove it before proceeding
exit 1
fi
if [ -d database ]; then
echo Directory database exists, please remove it before proceeding
exit 1
fi
echo Unzipping Bamboo HOME directory ...
java -jar $TRUEZIP_JAR cp $BAMBOO_EXPORT_FILE/bamboo-home bamboo-home
echo Unzipping Bamboo database ...
java -jar $TRUEZIP_JAR cp $BAMBOO_EXPORT_FILE/database database
Last modified on May 24, 2016
Related content
- Downloading Bamboo remote agent installer fails with ZipException: invalid entry compressed size.
- Bamboo fails to import with EOF exception
- BambooImportException: Import file is corrupted. Can't find any files to import when importing to Bamboo
- Internal Server Error while importing Bamboo export zip: java.lang.IllegalStateException: getAttribute: Session already invalidated
- Bamboo startup or runtime error due to ORA-00257 archiver error
- Enabling GZIP compression
- Bamboo export and backup fails
- Bamboo Crashes Due to Insufficient Disk Space and Truncated bamboo.cfg.xml File
- OutOfMemory Errors in Bamboo Server or Agents
- Bamboo fails with "No space left on device" due to large artifacts
Powered by Confluence and Scroll Viewport.