Reputation: 311
I am wanting to upgrade my t2.micro EC2 windows server. I have read the amazon resize link http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-resize.html and it asks to "stop" my server. My server is EBS and when i try to stop I get a wrning that says "all ephemeral storage will be deleted". Will my WAMP setup (apache, mysql database, PHP) running on C:\ and all database be lost? How do i make sure it isn't?
Upvotes: 2
Views: 864
Reputation: 6120
You can do it by:
Without Stopping Instance:
Create a Snapshot of your Volume. Create Image from Snapshot. Launch Instance from the AMI and with your desired Instance Type.
It will save all your Configuration and Data.
With Stopping Instance: As you have mentioned all your data is on EBS. Stop the Instance. Create an Image of the Instance. Launch Instance from the AMI and with your desired Instance Type.
It will save all your Configuration and Data.
Hope It Helps.. :)
Upvotes: 0
Reputation: 544
You can safely upgrade your t2.micro instance from AWS Dashboard.
Simply perform the following steps:
Upvotes: 3