shareVM- Share insights about using VM's

Simplify the use of virtualization in everyday life

Posts Tagged ‘ami

Top 10 referrers for Q1 2009

leave a comment »

Amazon EC2 announces developer toolkit for Eclipse IDE

leave a comment »

I received the email annoucement from Amazon ec2 earlier today:

We are excited today to introduce the AWS Toolkit for Eclipse, a plug-in for the Eclipse Java IDE that makes it easier to develop, deploy, and debug Java applications on Amazon Web Services. With the AWS Toolkit for Eclipse, you’ll be able to get started faster and be more productive when building AWS applications.

The initial launch of the AWS Toolkit for Eclipse is targeted at Amazon EC2 developers and provides basic management features along with tools for deploying and debugging Java web applications.

The AWS Toolkit for Eclipse, based on the Eclipse Web Tools Platform, guides Java developers through common workflows and automates tool configuration, such as setting up remote debugger connections and managing Tomcat containers. The steps to configure Tomcat servers, run applications on Amazon EC2, and debug the software remotely are now done seamlessly through the Eclipse IDE.

You can read the detailed announcement here and also download the AWS Toolkit for Eclipse.

Written by paule1s

March 25, 2009 at 8:03 pm

Oracle releases virtual appliances (AMI’s) on Amazon’s EC2

leave a comment »

Oracle Corporation has delivered a set of free Amazon Machine Images (AMIs), to make it easy for customers to get started deploying Oracle solutions on Amazon EC2. The following appliances are built on Oracle Enterprise Linux Release 5 Update 2 as the base OS:

Oracle Secure Backup

For on-premise Oracle installations, AWS offers a dependable and secure off-site backup location through the Cloud Backup module, which is a part of Oracle Secure Backup – a tape backup management solution. It provides customers the flexibility to back up data to either tape or the Cloud.

Licensing

Oracle customers can now license Oracle Database 11g, Oracle Fusion Middleware, and Oracle Enterprise Manager to run in the AWS cloud computing environment. Oracle customers can also use their existing software licenses on Amazon EC2 with no additional license fees.

Written by paule1s

February 17, 2009 at 4:15 am

How To Build Virtual Appliances

leave a comment »

 Ubuntu JeOS

VMWare Studio

Parallels

rPath rBuilder

Rightscale

RightImages provide ready-to-go base operating systems with core cloud software.

ServerTemplates also allow you to designate any number of scripts that you want to run at boot time, upon demand, or when an event is triggered.

RightScripts allow you to specify packages that you want to install before a script is executed and even allow you to upload and attach files directly to scripts.

Amazon Machine Image (AMI)

Written by paule1s

February 16, 2009 at 8:46 am

IBM releases virtual appliances (AMI’s) on Amazon’s EC2

with one comment

IBM has begun offering IBM DB2, IBM Informix, IBM WebSphere sMash, IBM Lotus Web Content Management, and IBM WebSphere Portal Server AMI‘s on Amazon.com’s EC2.

IBM is providing several “Development” AMIs at no additional fee beyond Amazon EC2 charges for developers building commercial IBM-based applications.

AWS will also roll out pay-as-you-go pricing for the “Production” Amazon EC2 running IBM service, enabling you to purchase these services by the hour.

The groundbreaking development is that IBM has rationalized their licensing so the customers can use their existing licenses for virtual appliances

For customers that already have existing IBM licenses, you are now eligible to bring them to Amazon EC2 starting today. IBM has created a Processor Value Unit (PVU) conversion table that makes it easy to determine how your existing licenses apply to the various EC2 instance types.

Update : An interesting analysis of this announcement at CIO.com

Written by paule1s

February 12, 2009 at 8:36 am

Top 12 referrers over the past 3 months

leave a comment »

Web-based EC2 console, alternative to ElasticFox

with one comment

Mike Culver, technology evangelist for Amazon Web Services announced the availability of a web-based management console for ec2, the Elastic Compute Cloud.

The key features are summarized by James Urquhart and by Saad Ali Abassi.

Alan Williamson offers a visual tour of the new UI.

As an AWS customer, I feel heartened by this investment on Amazon’s part because it emphasizes their commitment to commoditize AWS and make its services widely usable. The AWS services will become cheaper as usage ramps up on the commoditization curve and makes “cloud computing accessible for the masses

Written by paule1s

January 9, 2009 at 6:17 pm

Jumpbox releases 38 Open Source Virtual Appliances on ec2

leave a comment »

After having gone through the learning curve of setting up an application on Amazon’s ec2, I found it interesting that Jumpbox has released 38 open source applications, including SugarCRM, mySQL, Drupal, etc, as virtual appliances available on the ec2 cloud. This is an interesting play because it leverages virtualization to offer software as a service in the cloud and is of great benefit to SMB’s who can use these services right away, when they don’t have the IT infrastructure (staff, hardware, data center, etc.) to host it themselves.

Smart move, Jumpbox, you are a hip startup – the convergence of virtualization, SaaS in the cloud should help raise your market valuation. :-)

Written by paule1s

December 22, 2008 at 12:11 pm

Create a new EC2 AMI instance from an existing AMI

leave a comment »

  1. Open ElasticFox; Open tab AMI and Instances
  2. Select an AMI Instance to suit your needs and launch it as described here
  3. You will be shown the Launch New Instance dialog box
  4. Select the Instance Type as small or large
  5. Select the key pair you want to use. There might be just one in the dropdown if you are the only user, otherwise there can be one per member of your development team.
  6. Select the Availability Zone in the same zone as your primary services and data. We chose us-east-1c because that is the zone where all our VM’s are currently running.
  7. Select the appropriate Security Group, I chose pauls-sandbox, which was created as described here.
  8. Press the Launch button to launch an instance of this AMI
  9. The AMI instance is shown as running
  10. Right click on the running AMI instance and select Connect to Instance. This should bring up a terminal window

You have got to remember at all times that Amazon EC2 is stateless, it will not remember things between one AMI instance to the next unless you have allocated persistent storage in Amazon’s Simple Storage Service (S3) and maintain state there, e.g., .bashrc, etc for logins.

  1. Create a new volume in the Elastic Block Store (EBS) from the Volumes and Snapshots tab in ElasticFox
  2. Attach this newly created volume as /dev/sdh with the AMI instance that you have just started
  3. This causes the volume to be associated with the running instance

Written by paule1s

December 5, 2008 at 10:12 pm

Isolating your EC2 AMI using Security Groups

with one comment

If you are a member of a development team that will be sharing code and data residing on shared storage in the cloud, you should create your own security group to isolate your VM and testing from others in your group. I learnt this the hard way when our development team was operating in the same security group and I accidentally terminated Harvey’s VM while he was rewriting the makefile. He lost all his changes.

  1. Access the Security Groups tab in ElasticFox.
  2. Create a new group and add new group permissions. I added a new group called pauls-sandbox and added group permissions for
  • SSH (port 22),
  • HTTP (port 80),
  • HTTPS (port 443) and
  • ICMP (port -1) for pings

Written by paule1s

December 5, 2008 at 10:01 pm