Or is it absolutely necessary to have an EBS backed storage? Does anyone have manuals/Howtos?

I am following the manual given on this site.

link|improve this question

76% accept rate
feedback

5 Answers

up vote 5 down vote accepted

You can create an AMI from either an EBS or S3-backed running instance. The simplest way is to use the AWS Management Console to select the instance and click 'Create Image' from the Instance Actions menu.

This will create either an EBS or S3-backed AMI, depending on the type of instance.

Be aware that creating an AMI from a Running instance is inherently potentially unsafe - the storage is not imaged as a hard 'point-in-time' snapshot, so changes to the filesystem whilst the image is being created may not be recorded, and may even result in a compromised image. You should quiesce the OS as far as possible before starting.

Note also that your instance will reboot during the image-creation process, so make sure you're prepared for any temporary loss of service from the VM.

link|improve this answer
The options are grayed-out. And I cant stop the large instance, only reboot it. What now? – Kaustubh P Jan 4 '11 at 11:59
PS: its a root storage device, not a EBS backed one. – Kaustubh P Jan 4 '11 at 12:07
Hmm, I wonder if this is something to do with options configured for the baseline image...? Alas, I'm a Windows EC2 user, and can't offer any further suggestions for Linux VMs. – Jonners Jan 5 '11 at 8:20
It´s a fast proccess? How many time get it? – Ricardo May 10 at 14:55
feedback

you will to refer the manual for the three commands:

ec2-bundle-vol, ec2-upload-bundle, ec2-register.

Keep at hand your private and certificate key (eg. pk.pem, cert.pem files) and your access and shared key. Download the ec2 ami tools and setup the environment variables for the ec2 ami tools. This site might give you the details on how to bundle the volume, create the images, upload them to S3 and finally register it as your own ami.

http://alestic.com/2009/06/ec2-ami-bundle

link|improve this answer
feedback

If you bundle a Windows EBS instance while it is running, its Administrator password will be reset by Amazon's rebundling tools - so you'll have to use the EC2 "get Admin password" function with instances launched from the new AMI.

If you stop your Windows instance before rebundling, its Administrator password will remain intact through the rebundling process.

I don't know if this is documented anywhere, but it's certainly been my experience with Windows 2003 instances.

link|improve this answer
feedback

One point I'd like to make: You can bundle EBS-backed instances WITHOUT rebooting. You cannot do so with S3-backed instances.

link|improve this answer
feedback

yes you Can make an AMI from a running instance

you can refer here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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