Reputation: 3292
There is no way to migrate from t1.micro to t2.micro on Amazon directly, I know it.
So, is it gonna be work:
Is it safe for a data?
Upvotes: 8
Views: 7618
Reputation: 1909
This method is actually easier than the one on the amazon forums. It also provides a step by step procedure with images.
http://jsianes.blogspot.jp/2014/07/aws-convert-t1-instances-to-t2.html
The basic idea is to:
Note: If you are rebinding an Elastic IP you will need to replace the ssh keys associated with the previous host
ssh-keygen -f "/home/user/.ssh/known_hosts" -R <IP>
ssh-keygen -R <IP>
Upvotes: 9
Reputation: 644
Detaching the EBS and attaching it to the new T2 instance, won't work as the EBS volume is still using PV instead of the HVM if this is a root volume. You can follow the steps ChrisC used in the below link which has been verified to work.
https://forums.aws.amazon.com/thread.jspa?threadID=155526
Upvotes: 0