I've created an AMI(EBS AMI) using the Amazon AWS console. That AMI has 2 snapshots attached to it. Now I want to backup that AMI to a S3 bucket. Is this possible?

I actually need to do this to be able to then move that AMI to a bucket in a different region and register that AMI for use in that different region.

Any clues?

link|improve this question
feedback

2 Answers

That is not a trivial task. I have seen this site referenced in many blogs and references, but I have not used it myself.

You might want to try CloudScripts and in particular for your needs this particular script: https://cloudyscripts.com/tool/show/4

Hope this helps.

link|improve this answer
I think I need to do it myself..using a strange tool will not save me from future problems. To be onest the problem is very strange. Any idea where the EBS AMI instance is actually saved?..I mean physical location? When creating a AMI using the ec2-bundle-vol, I have access to the AMI(and the Manifest.xml) and I can upload it to the bucket...but in the case of creating a EBS AMI in the AWS console..where is the EBS AMI saved, can it be backuped on the S3? Any tips would be very helpful. – user1064446 Nov 24 '11 at 18:33
feedback

Now I want to backup that AMI to a S3 bucket. Is this possible?

While Amazon EBS indeed provides the ability to create point-in-time snapshots of volumes, which are persisted to Amazon S3, this operation is outside of your control and entirely handled by EC2, see the respective FAQ Will I be able to access my snapshots using the regular Amazon S3 APIs?:

No, snapshots are only available through the Amazon EC2 APIs.

You can achieve your goal by following Eric Hammond's elaborate article Copying EBS Boot AMIs Between EC2 Regions, which guides you through all required steps (quite some though).

Good luck!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.