How can I backup or sync an Amazon S3 bucket?

Viewed 13995

I have critical data in an Amazon S3 bucket. I want to make a weekly backup of its other contents to another cloud service, or even inside S3. The best way would to sync my bucket to a new bucket inside a different region, in case of data loss.

How can I do that?

5 Answers

The AWS CLI supports this now.

aws s3 cp s3://first-bucket-name s3://second-bucket-name --recursive

Related