A simple java command line application for Amazon Glacier. You can find the latest version at https://github.com/MoriTanosuke/glacieruploader/.
Either download a binary or build the software yourself from sourcecode.
You need a file named aws.properties
with 2 lines:
accessKey=your_aws_access_key
secretKey=your_secret_key
When running the uploader, specify the path to this file with --credentials /path/to/aws.properties
or set the default in your configuration file. If you don't specify this option, the default is to
search for the file in javas user.home
directory.
Option Description
------ -----------
-?, -h, --help display the help menu
-a, --calculate <File> calculate hashsum for a file
-c, --create creates a new vault
--credentials <File> path to your aws credentials file
(default: /home/carsten/aws.
properties)
-d, --delete deletes an existing archive
-e, --endpoint URL of the amazon AWS endpoint where
your vault is
-l, --list-inventory retrieve the inventory listing of a
vault
-m, --multipartupload <File> start uploading a new archive in
chuncks
-o, --download download an existing archive
-p, --partsize [Integer] sets the size of each part for
multipart uploads (default: 10485760)
-r, --delete-vault deletes an existing vault
-t, --target <File> filename to store downloaded archive
-u, --upload <File> start uploading a new archive
-v, --vault name of your vault
Available since 0.0.6
If you don't want to specify the options credentials
, vault
and endpoint
every time, you can
create a configuration file .glacieruploaderrc
and enter the options there. The default is to search
for the configuration file in java user.home
directory.
This is an example of the configuration file:
credentials=/home/myuser/some/path/mysecretaws.properties
endpoint=https://glacier.eu-west-1.amazonaws.com
vault=myvaultname
Available since 0.0.4.
java -jar glacieruploader.jar --endpoint https://glacier.eu-west-1.amazonaws.com --vault myvaultname --create
Available since 0.0.4. Changed in 0.0.6.
java -jar glacieruploader.jar --endpoint https://glacier.eu-west-1.amazonaws.com --vault myvaultname --delete-vault
Available since 0.0.3.
java -jar glacieruploader.jar --endpoint https://glacier.eu-west-1.amazonaws.com --vault myvaultname --upload /path/to/my/file.zip
Starting to upload file.zip...
Using endpoint https://glacier.eu-west-1.amazonaws.com
Starting upload of file.zip
Uploaded archive j7UL7pH46FJGhoAxNVDsdjhHs_GLSKGLd12Dq44dfiyTciW6DSCQubctUFEZ4nKWPrJzv_YoxPVK_TfdAuMCxiQIE3_zEGDg84luI0-tzWMusdfjKHG2ILuhJhK5PySOOaw
This will return an archive id which you can use to retrieve the archive again later.
Available since 0.0.8.
java -jar glacieruploader.jar --endpoint https://glacier.eu-west-1.amazonaws.com --vault myvaultname --multipartupload /path/to/my/file.zip --partsize 10485760
Multipart uploading upload file.zip...
Using endpoint https://glacier.eu-west-1.amazonaws.com
ArchiveID: j7UL7pH46FJGhoAxNVDsdjhHs_GLSKGLd12Dq44dfiyTciW6DSCQubctUFEZ4nKWPrJzv_YoxPVK_TfdAuMCxiQIE3_zEGDg84luI0-tzWMusdfjKHG2ILuhJhK5PySOOaw
Part uploaded, checksum: 964a3dea958ad12959450dcc8f28acba0830989d1b8ae72442cebbe6f0d29e3e
...
Uploaded archive j7UL7pH46FJGhoAxNVDsdjhHs_GLSKGLd12Dq44dfiyTciW6DSCQubctUFEZ4nKWPrJzv_YoxPVK_TfdAuMCxiQIE3_zEGDg84luI0-tzWMusdfjKHG2ILuhJhK5PySOOaw
This will return an archive id which you can use to retrieve the archive again later.
Available since 0.0.4. Changed in 0.0.5.
java -jar glacieruploader.jar --endpoint https://glacier.eu-west-1.amazonaws.com --vault myvaultname --download myarchiveid --target path/to/filename.zip
This will download the archive to a temporary location and append the prefix glacier-
and the postfix .dl
to the file. This will change later and you'll provide the file location.
The option --target
specifies an absolute or relative path to a file where the downloaded archive will be saved.
Available since 0.0.6
java -jar glacieruploader.jar --endpoint https://glacier.eu-west-1.amazonaws.com --vault myvaultname --delete myarchiveid
Deletes the archive myarchiveid
.
Available since 0.0.5.
java -jar glacieruploader.jar --calculate /path/to/file.zip
cd229f64d6a3aeb4f1bcbe953d8a7be00a077747b6d6a1001e65d14ef10c1706
This will calculate a TreeHash sum for the given file. The hash can be verified with the one calculated by Amazon.
java -jar glacieruploader.jar --endpoint https://glacier.eu-west-1.amazonaws.com --vault myvaultname --list-inventory
Listing inventory for vault myvaultname...
Inventory Job ID=8yM9rC4RvSKW5QlXdsglkjJHDFGPMSQyZA2CjhpIWgw2AE4lyyIU87uZz2d-b8eoKrCbGehR4vj5dfHiKPA9Zj5
This will give you a job ID for the inventory listing of the vault. After the job is completed, you can retrieve the listing.
Available since 0.0.3.
java -jar glacieruploader.jar --endpoint https://glacier.eu-west-1.amazonaws.com --vault myvaultname --list-inventory yourjobidfromthepreviousstep
Retrieving inventory for job id 8yM9rC4RvSKW5QlXdsglkjJHDFGPMSQyZA2CjhpIWgw2AE4lyyIU87uZz2d-b8eoKrCbGehR4vj5dfHiKPA9Zj5...
Using endpoint https://glacier.eu-west-1.amazonaws.com
Go to my Issues page and add a new issue with a nice report about what's failing for you. Try to provide enough information so I can help you out and fix the error for everyone. It might be a good idea to check for existing issues before reporting a new one.
And as always, you can fork me and fix the error yourself. :-)
This project is distributed under GNU GPL v3.