<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Automounting Amazon EBS volumes on EC2 instances</title>
	<atom:link href="http://www.ioncannon.net/system-administration/199/automounting-amazon-ebs-volumes-on-ec2-instances/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ioncannon.net/system-administration/199/automounting-amazon-ebs-volumes-on-ec2-instances/</link>
	<description>Thoughts on Software Development and Engineering</description>
	<lastBuildDate>Thu, 05 Jan 2012 16:35:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: carson</title>
		<link>http://www.ioncannon.net/system-administration/199/automounting-amazon-ebs-volumes-on-ec2-instances/comment-page-1/#comment-168603</link>
		<dc:creator>carson</dc:creator>
		<pubDate>Tue, 27 Apr 2010 01:03:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=199#comment-168603</guid>
		<description>It can probably be done through the API but I&#039;m not sure if it is worth it. You could also probably look to see if the device is available in a loop.</description>
		<content:encoded><![CDATA[<p>It can probably be done through the API but I&#039;m not sure if it is worth it. You could also probably look to see if the device is available in a loop.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.ioncannon.net/system-administration/199/automounting-amazon-ebs-volumes-on-ec2-instances/comment-page-1/#comment-168332</link>
		<dc:creator>David</dc:creator>
		<pubDate>Fri, 23 Apr 2010 10:38:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=199#comment-168332</guid>
		<description>Good stuff!

I have checked that an attached volume state transitions from &quot;available&quot; to &quot;in-use&quot;, but when in that state... isn&#039;t there any other way of confirming that the volume can safely used (for formatting it, for using it with mdadm or whatever), instead of waiting 20 seconds?

Regards,
David</description>
		<content:encoded><![CDATA[<p>Good stuff!</p>
<p>I have checked that an attached volume state transitions from &#034;available&#034; to &#034;in-use&#034;, but when in that state&#8230; isn&#039;t there any other way of confirming that the volume can safely used (for formatting it, for using it with mdadm or whatever), instead of waiting 20 seconds?</p>
<p>Regards,<br />
David</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Symphonious &#187; RightScale AWS Amazon EC2 Library for Ruby</title>
		<link>http://www.ioncannon.net/system-administration/199/automounting-amazon-ebs-volumes-on-ec2-instances/comment-page-1/#comment-167044</link>
		<dc:creator>Symphonious &#187; RightScale AWS Amazon EC2 Library for Ruby</dc:creator>
		<pubDate>Wed, 07 Apr 2010 07:35:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=199#comment-167044</guid>
		<description>[...] lazy to actually look into it in detail and never really needed to. However, I’ve stumbled across instructions for auto-mounting an EBS volume which turns out to be very handy, and leads on to the particularly awesome right_aws ruby [...]</description>
		<content:encoded><![CDATA[<p>[...] lazy to actually look into it in detail and never really needed to. However, I’ve stumbled across instructions for auto-mounting an EBS volume which turns out to be very handy, and leads on to the particularly awesome right_aws ruby [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carson</title>
		<link>http://www.ioncannon.net/system-administration/199/automounting-amazon-ebs-volumes-on-ec2-instances/comment-page-1/#comment-141990</link>
		<dc:creator>carson</dc:creator>
		<pubDate>Tue, 16 Jun 2009 14:09:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=199#comment-141990</guid>
		<description>I don&#039;t think they have an auto-attach yet. 

I think you could get around rebuilding the AMI by passing the data you need in as a parameter when you launch the instance. The entire solution isn&#039;t ideal but until they provide something better it is probably the only way to take care of it. 

Some other issues I have seen and read about are that sometimes the EBS volumes get stuck in a mounted state and can&#039;t be remounted until they are forced to release. That kind of tosses a wrench into the mix too but again there isn&#039;t a lot that can be done about it. Over time I&#039;m sure Amazon will work out those kinks.</description>
		<content:encoded><![CDATA[<p>I don&#039;t think they have an auto-attach yet. </p>
<p>I think you could get around rebuilding the AMI by passing the data you need in as a parameter when you launch the instance. The entire solution isn&#039;t ideal but until they provide something better it is probably the only way to take care of it. </p>
<p>Some other issues I have seen and read about are that sometimes the EBS volumes get stuck in a mounted state and can&#039;t be remounted until they are forced to release. That kind of tosses a wrench into the mix too but again there isn&#039;t a lot that can be done about it. Over time I&#039;m sure Amazon will work out those kinks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Little</title>
		<link>http://www.ioncannon.net/system-administration/199/automounting-amazon-ebs-volumes-on-ec2-instances/comment-page-1/#comment-141841</link>
		<dc:creator>James Little</dc:creator>
		<pubDate>Mon, 15 Jun 2009 11:07:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=199#comment-141841</guid>
		<description>Thanks for the script Carson. Do you know if Amazon created an auto-attach method yet? A quick Google and look over the API docs suggests not. 

Also, there doesn&#039;t seem to be a way of programmatically grabbing the Volume ID. So if your EBS volume dies and you have to re-create from a snapshot, the ID changes and you have to edit your script and possibly rebuild your whole AMI; a far from ideal solution :(

Anyway, thanks again!

James</description>
		<content:encoded><![CDATA[<p>Thanks for the script Carson. Do you know if Amazon created an auto-attach method yet? A quick Google and look over the API docs suggests not. </p>
<p>Also, there doesn&#039;t seem to be a way of programmatically grabbing the Volume ID. So if your EBS volume dies and you have to re-create from a snapshot, the ID changes and you have to edit your script and possibly rebuild your whole AMI; a far from ideal solution :(</p>
<p>Anyway, thanks again!</p>
<p>James</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.193 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-03 05:23:46 -->

