I am trying for Automate backups with digital ocean space referring the following link
https://www.digitalocean.com/community/tutorials/how-to-automate-backups-digitalocean-spaces
But when I am trying to upload the backupthis directory and its contents to Space it shows,
upload: ‘testrun-180511-15_59_43.tar.gz’ -> ‘s3://vamotest/testrun-180511-15_59_43.tar.gz’ [1 of 1] 166 of 166 100% in 0s 5.15 kB/s done ERROR: S3 error: 404 (NoSuchBucket)
How can I resolve the error ??
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Check your s3cmd config file. I had the same issue but the config was wrong. The host_bucket var remained untouched. Therefore there was an issue. After fixing that, it works.
ORIGINAL host_base = ams3.digitaloceanspaces.com host_bucket = %(bucket)s.nyc3.digitaloceanspaces.com
CORRECTED host_base = ams3.digitaloceanspaces.com host_bucket = %(bucket)s.ams3.digitaloceanspaces.com
Did you create the bucket/directory you are using when running the backup script in Spaces before attempting a backup?