1.当root分区存储在本地时,其中的数据只能在instance运行时存在,停止实例后数据消失,而且存储空间为10G。
当使用EBS时,数据可以持久存储而不是仅仅在实例运行时,存储的最大空间为1TB。
2、boot from ebs 后,如果terminate实例,默认会删除启动时挂载的ebs卷标(如:root分区),如果你再启动instance以后挂载了ebs卷标,这些卷标不会被自动删除。
3、stop and start(从s3上的ami启动时不能执行这两种操作)
Stop will shut down your instance releasing the compute resources, but it will not delete your Amazon EBS volume. When Stop is called, you will retain your instance id, so that you can restart it at a later time.
stop 不会删除EBS卷标。
You can override that behavior so that a shutdown will also act like a Terminate. This is documented in more detail in the Developer Guide.
从系统内执行shutdown操作时相当于执行了stop操作。
Start is then used to restart instances that have previously been stopped. When the instance is restarted it will retain the original instance id.
当你执行了stop操作以后,你会发现EBS卷标仍然存在(如果执行terminate,卷标将被删除),状态为in-use。这时,你可以向操作普通EBS卷标一样操作这个卷标,如卸载或重新挂载到其他instance上,并修复文件系统或者挂载到一台集中控制的instance上来更新程序。
执行stop start操作以后,public ip将会改变,解决办法就是使用elastic ip。
4、在create image(EBS ami)时,实例不可以连接
阅读(2001) | 评论(0) | 转发(0) |