Rishin S Babu
Rishin S Babu

Reputation: 1693

Instance Storage Missing in EC2 Instance

I took an c1.xlarge instance in EC2(Ubuntu 12.04) which promised me 1690 Gigs of instance storage. But when I checked the instance, I could only find 450 Gigs of it. What am I overlooking and where?

Upvotes: 5

Views: 2245

Answers (2)

j0nes
j0nes

Reputation: 8099

For some instances, there is a special block device mapping necessary to mount every available instance storage space. Here is a link to a description on how to mount the extra space so that it also becomes available in your instance.

Upvotes: 4

Ajay Tiwari
Ajay Tiwari

Reputation: 3448

try cat /proc/partitions command and check if it is attached to your instance. There might be a case where EBS storage is not mounted on your instance however it would be available as attached storage. If you can see 1690 Gigs with above command, you have to mount remaining storage to your instance then only it would be available to your instance for usage and can be seen through df -kh command.

Upvotes: 4

Related Questions