What means to be a root device on EC2?

后端 未结 4 858
时光说笑
时光说笑 2021-01-04 20:34

I couldn\'t find the answer on EC2 documentation. What is it for? If I launched an EBS backed instance, the root device for the instance would be an EBS volume. If I install

相关标签:
4条回答
  • 2021-01-04 21:13

    This may have been added since you asked, but I believe this answers the question:

    http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/RootDeviceStorage.html

    0 讨论(0)
  • 2021-01-04 21:21

    EC2 instances have two types of storage -- ephemeral storage, and EBS based storage -- and each instance is given a specific amount of that disk space by default. Each instance has its own allotment of disk space that it can use which is independent of any other instances disk space that you launch. You can also add an EBS volume to your drive for additional storage, but, those volumes can only be attached to one specific host at a time.

    If you had two EBS instances, and you wanted to ensure that they're both using the same tools and software, you'd need to enforce that using a configuration management tool, such as puppet, chef, or cfengine.

    0 讨论(0)
  • 2021-01-04 21:27

    I agree with what Ian wrote. I would add that the "root device" in EC2 is analogous to the operating system partition in a personal computer. It is where the filesystem of your OS resides.

    0 讨论(0)
  • 2021-01-04 21:28

    This is the best answer about 'root device' so far! AWS is still new. And most of the times, the answer is just 'cut and paste' straight from AWS document, which does not help much!

    https://web.archive.org/web/20140601070714/https://skeddly.desk.com/customer/portal/articles/1346918-ebs-backed-versus-instance-store

    0 讨论(0)
提交回复
热议问题