Posts Tagged ‘cloud’
Cloud Flavors

1) Software as a Service (SAAS)
Salesforce.com (sales application)
wush.net (svn)
2) Platform as a Service (PAAS)
a) Java
Google App Engine
b) Rails
Joyent
Heroku
EngineYard
c) Python
Google App Engine
http://wiki.python.org/moin/PythonHosting
d) .net
Azure
3) Infrastructure as a Service (IAAS)
Amazon EC2
Top 12 referrers over the past 3 months
Here are the Top 12 referrers to our blog over the past 3 months, the numbers of referrals are in parentheses.
- http://pro-linux.de/berichte/ext4/ext4.html (546)
- http://dabcc.com/article.aspx?id=9653 (342)
- http://networksecuritytoolkit.org/nst/index.html (110)
- http://polishlinux.org/apps/cli/ext4-defragmentation-with-e4defrag/ (59)
- http://communities.vmware.com/thread/189804?tstart=0 (49)
- http://techblog.41concepts.com/2008/03/31/shrink-your-windows-disk-image-on-wmware-fusion-mac/ (42)
- http://blog.rightscale.com/2009/01/09/amazon-launches-ec2-console/ (37)
- http://wordpress.com/tag/vhd/ (33)
- http://wordpress.com/tag/vmdk/ (32)
- http://virtualgeek.typepad.com/virtual_geek/2009/01/updated-homebrew-esx-hardware-list.html (32)
- http://blogs.msdn.com/heaths/archive/2005/07/30/445621.aspx (32)
- http://kakku.wordpress.com/2008/06/23/virtualbox-shrink-your-vdi-images-space-occupied-disk-size/ (31)
Thank you for the referrals. Hope the content is meaningful for our readers.
Create a new EC2 AMI instance from an existing AMI
- Open ElasticFox; Open tab AMI and Instances
- Select an AMI Instance to suit your needs and launch it as described here
- You will be shown the Launch New Instance dialog box
- Select the Instance Type as small or large
- 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.
- 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.
- Select the appropriate Security Group, I chose pauls-sandbox, which was created as described here.
- Press the Launch button to launch an instance of this AMI
- The AMI instance is shown as running
- 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.
- Create a new volume in the Elastic Block Store (EBS) from the Volumes and Snapshots tab in ElasticFox
- Attach this newly created volume as /dev/sdh with the AMI instance that you have just started
- This causes the volume to be associated with the running instance