Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save klingtnet/c64a8a04b39b28745cd910adc74a93de to your computer and use it in GitHub Desktop.
Save klingtnet/c64a8a04b39b28745cd910adc74a93de to your computer and use it in GitHub Desktop.
A note on restoring glacier type backups with rclone and scaleway

Restoring backups with rclone that are stored as C14/Glacier cold storage on Scaleway will fail with Failed to copy: failed to open source object: AccessDenied: Access Denied..

# create backup
$ rclone --s3-storage-class=GLACIER sync backup/ scaleway-encrypted:
...
# try to restore
$ rclone --s3-storage-class=GLACIER sync scaleway-encrypted: backup/
Failed to copy: failed to open source object: AccessDenied: Access Denied.
...

You must restore those objects to type STANDARD storage before you can download them.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment