Growing Amazon EBS Volume sizes - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T21:55:31Zhttp://stackoverflow.com/feeds/question/550790http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/550790/growing-amazon-ebs-volume-sizes4Growing Amazon EBS Volume sizesNikhil Gupte2009-02-15T12:16:12Z2009-02-15T12:40:08Z
<p>I'm quite impressed with Amazon's EC2 and EBS services. I wanted to know if it is possible to grow an EBS Volume.</p>
<p>For example: If I have a 50 GB volume and I start to run out of space, can I bump it up to 100 GB when required?</p>
http://stackoverflow.com/questions/550790/growing-amazon-ebs-volume-sizes/550811#5508111Answer by echox for Growing Amazon EBS Volume sizesechox2009-02-15T12:37:38Z2009-02-15T12:37:38Z<p>You can't simply 'bump in' more space on the fly if you need it, but you can resize the partition with a snapshot.</p>
<p>Steps do to this:</p>
<ol>
<li>unmount ebs volume</li>
<li>create a ebs snapshot</li>
<li>add new volume with more space</li>
<li>recreate partition table and resize
filesystem</li>
<li>mount the new ebs volume</li>
</ol>
<p>Look at <a href="http://aws.amazon.com/ebs/" rel="nofollow">http://aws.amazon.com/ebs/</a> - EBS Snapshot:</p>
<blockquote>
<p>Snapshots can also be used to instantiate multiple new volumes,
expand the size of a volume or move
volumes across Availability Zones.
When a new volume is created, there is
the option to create it based on an
existing Amazon S3 snapshot. In that
scenario, the new volume begins as an
exact replica of the original volume.
By optionally specifying a different
volume size or a different
Availability Zone, this functionality
can be used as a way to increase the
size of an existing volume or to
create duplicate volumes in new
Availability Zones. If you choose to
use snapshots to resize your volume,
you need to be sure your file system
or application supports resizing a
device.</p>
</blockquote>
http://stackoverflow.com/questions/550790/growing-amazon-ebs-volume-sizes/550814#5508142Answer by ConroyP for Growing Amazon EBS Volume sizesConroyP2009-02-15T12:40:08Z2009-02-15T12:40:08Z<p>You can grow the storage, but it can't be done on the fly. You'll need to take a snapshot of the current block, add a new, larger block and re-attach your snapshot.</p>
<p>There's a simple walkthrough <a href="http://blog.edoceo.com/2009/02/amazon-ebs-how-to-grow-storage.html" rel="nofollow">here</a> based on using <a href="http://docs.amazonwebservices.com/AWSEC2/latest/DeveloperGuide/CLTRG_api_tools.html" rel="nofollow">Amazon's EC2 command line tools</a></p>