Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an EBS volume (e.g. /dev/sdf) that has been attached to an EC2 instance (which boots from a different EBS volume), and I have mounted the volume (through "mount /dev/sdf /data"). When I stop and start again the instance, the volume is still attached but no longer mounted, and I have to manually mount it again.

Is there a way to make the volume /dev/sdf automatically mounted to /data upon starting the instance? Thanks.

share|improve this question
3  
You can place it to /etc/fstab but the EBS volume must be attached first. Another option is to write a initscript that will attached the volume and mount it on the instance. – Rodney Quillo May 16 '11 at 2:16
Can somebody explain how to write such init script and how to make it executable on system start? This is still part of main question according to the title :) Thanks, if somebody can answer. – Anton Babenko Jan 3 '12 at 18:49

1 Answer

up vote 16 down vote accepted

Make an entry to /etc/fstab..

Entry would be like : "/dev/sdf /data ext3 defaults 1 1"

This will automatically mount the volume during start :)

share|improve this answer
This worked like a charm. Thanks very much. – user560494 May 18 '11 at 1:01
10  
Although that works, here is what Amazon supports says about the matter: I recommend looking into using RC init scripts instead of using the fstab for this purpose (for EC2 instances). If a device listed in the fstab fails to be mounted then this will halt the boot process and you will not be able to ssh into the instance. Instead, using an RC script could allow a "soft failure" to occur so that you could still ssh in and then fix the problem. See the full thread here: forums.aws.amazon.com/message.jspa?messageID=304528#304528 – Achilles Jul 2 '12 at 11:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.