Maca
Maca

Reputation: 1689

Location of EC2 instace storage

I just booted AWS EC2 instance type m3.medium which has 4GB of SSD instance storage. I could not find the 4GB directory. Where is it located at?

Upvotes: 0

Views: 99

Answers (1)

Julio Faerman
Julio Faerman

Reputation: 13501

When you launch the instance, you need to add the instance storage volumes explicitly in the "configure storage" tab of the launch wizard or equivalent settings in CLI/SDK. Then, according to your OS, you may see them automatically mapped to a new drive, automounted or ready to mount.

Mind that instance store volumes are ephemeral, i.e., they are erased when the instance is stopped.

For more information on instance storage, see: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html

Upvotes: 1

Related Questions