Reputation: 1511
I tried to shift m3.medium instance from Sydney to Mumbai using following steps.
- Created AMI in Sydney.
- Copied that AMI to Mumbai
- Tried to launch EC2 instance using that AMI.
The console shows message
"No matching instance type found"
.
Then I Googled a little bit and found that my current instance is Paravirtual (PV) and I should convert it to Hardware-assisted Virtual Machine (HVM).
I found following threads
However the solutions provided there are bit complicated for me being a newbie in AWS.
Is there a simplest way to achieve this using AWS Web Console?
Upvotes: 1
Views: 872
Reputation: 145
There is a way out -
ec2-register -n hvmami -s snap-08b00961a035ec238 --virtualization-type hvm
Let me know if this helps.
Upvotes: 1