Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to clone a EC2 instance data and all?

share|improve this question

4 Answers

up vote 25 down vote accepted

you can make an AMI of an existing instance, and then launch other instances using that AMI.

share|improve this answer
6  
How do I do that? – resonantmedia Feb 2 '10 at 4:27
and the data needs to be inside root partition (not on /mnt) or you can use EBS for data. – bhups Feb 2 '10 at 4:27
use ami-tools, which provides ec2-bundle-vol, ec2-upload-bundle utilities. Then use ec2-register from ec2-api-tools for registering your ami with Amazon. – bhups Feb 2 '10 at 4:31
2  
You can take an image (AMI) of the instance, and launch a new instance from that AMI with a different keypair. – siebo Apr 5 '11 at 4:38
show 3 more comments

Nowadays it is even easier to clone the machine with EBS-backed instances released a while ago. This is how we do it in BitNami Cloud Hosting. Basically you just take a snapshot of the instance which can be used later to launch a new server. You can do it either using AWS console (saving the EBS-backed instance as AWS AMI) or using the EC2 API tools:

Cloning the instance is nothing else but creating the backup and then launching a new server based on that. You can find bunch of articles out there describing this problem, try to find the info about "how to ..." backup or resize the whole EC2 instance, for example this blog is a really good place to start: alestic.com

share|improve this answer

The easier way is through the web management console:

  1. go to the instance
  2. select the instance and click on instance action
  3. create image

Once you have an image you can launch another cloned instance, data and all. :)

share|improve this answer
With the sweet new web console I guess this would be the best answer. (Although it's still pretty useful to know how to do it from the AWS console.) – keithxm23 Oct 12 '12 at 18:43
sure but it is so much easier from the new web console :) you also don't have all the issues with keys etc – devnull Oct 13 '12 at 19:17
After you create an image and click on snapshots wait until the snapshot is done. Afterwards go to AMIs (you won't see your image under 'owned by me') - **** click refresh in this screen **** to see it :) – thedrs Dec 7 '12 at 8:27

You can do it very easily with a Cloud Management software -like enStratus, RightScale or Scalr (disclaimer: I work there). With the cloned farm you can:

  1. Create a snapshot or a pre-made image to launch another day
  2. Duplicate your configuration to test it before production
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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