Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Sometimes when trying to launch my t1.micro EC2 instance, it cannot be provisioned and Amazon recommends trying a different availability zone. Is it possible to change this for an existing instance?

share|improve this question
Better asked on serverfault. – smparkes Dec 8 '11 at 3:34
4  
Why are these questions closed instead of moving them to serverfault? – Eric Hammond Jul 26 '12 at 21:23

closed as off topic by casperOne Dec 9 '11 at 1:03

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 20 down vote accepted

You cannot move an existing EC2 instance to a different availability zone directly.

However, the following approach can be used to move an instance to a different availability zone indirectly through a new AMI:

  1. Stop (do not terminate!) the old instance in the old availability zone.

  2. Create an AMI based on the old instance.

  3. Run a new instance of the new AMI in the new availability zone. It will be a fairly exact copy of your old instance.

If you were using an Elastic IP address, re-associate it with the new instance.

Once you have tested the new instance and know that it's working well, terminate the old instance in the old availability zone.

share|improve this answer
3  
wtf does "fairly exact copy" that worries me bro – portforwardpodcast Jun 30 '12 at 23:19
4  
portforwardpodcast: The new instance will be started with a different AMI id, different instance id, different EBS volume id and possibly different user-data (you decide what to pass in). Depending on the software and configuration of the instance, this could affect how it starts up and behaves. Otherwise, the file system on the instance will be as if you shut it down and restarted it. – Eric Hammond Jul 3 '12 at 16:19

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