user3259176
user3259176

Reputation:

Amazon AWS Glacier multi-part upload with CLI

I've been struggling to find a simple way to backup my files using AWS Glacier. The documentation is not very explicit:

Doc 1

Doc 2

Especially this doc, which is completely useless: Doc 3

Anyone around here has some experience with AWS Glacier?

Upvotes: 2

Views: 277

Answers (1)

Marcin
Marcin

Reputation: 238727

Based on the comments, the solution is to use s3 sync, e.g.:

aws s3 sync my-local-folder s3://my-glacier-backup-bucket --storage-class GLACIER

Upvotes: 1

Related Questions