views:

68

answers:

2

Hi All,

We are looking to move all of our systems to a virtualized env.

We will be going with EC2 and it appears that if we can install something like vmware or KVM on EC2 then create VMs as needed it would be the most cost effective solution for us.

Is this possible?

thanks!

+1  A: 

EC2 is already a virtualized environment; it uses the Xen virtualization manager, which is an open source equivalent to VMWare server. You can create VMs with EC2, customize them and save them as Amazon Machine Images (AMIs).

See the Amazon documentation for a more comprehensive introduction.

gareth_bowles
+2  A: 

As mentioned, EC2 is already a virtualized environment. In fact, you can even convert vmware images to AMI (The EC2 virtual machine format).

http://thewebfellas.com/blog/2008/9/1/creating-an-new-ec2-ami-from-within-vmware-or-from-vmdk-files

SamMeiers