Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

If i Stop an Amazon EC2 instance, is this saved?

If I stop an EC2 instance, rather than terminate, will this image be saved in my account and be available to be used at a later stage? ..as I noticed terminated instances eventually dissappear, would a stopped instance be available to boot up and start when ever?

Also regarding charging, I assume the cost for having a stopped instance would be charged per GB similar to a custom AMI?

Also another possibly simple question, if I shutdown a machine over SSH or via a script, does this initiate a termination or just a stop an instance (I assume it terminates the instance).

Thanks

like image 539
easyjo Avatar asked Jan 26 '11 12:01

easyjo


1 Answers

If you terminate the EBS backed instance, it will remove it from the list of running instance, including it's allocated EBS volume. Unless you set the instance attribute not to delete the volume.

If you only stop, it will changed to stopped status and you can start it again later.

If you shutdown a machine, it default's to stop.
A good read to protect your instance see: http://alestic.com/2010/01/ec2-instance-locking

like image 157
Rodney Quillo Avatar answered Sep 21 '22 05:09

Rodney Quillo