tags aws


Veröffentlicht von Edmund Haselwanter am Mittwoch, September 17, 2008

Die folgenden Seiten mit den Tags "aws" wurden gefunden.

Amazon EC2

Posted by Edmund Haselwanter on Aug 11, 2008
Tags: amazon, aws, cloud, ec2, tomcat

made my way through the deployment of webapp (tomcat 6) on Amazon EC2 the very famous webservice products from Amazon. weiterlesen…

Rund um den Amazon EC2 Service

Posted by Edmund Haselwanter on Aug 14, 2008
Tags: amazon, aws, cloud, ec2

I've collected some useful information about cloud computing/amazon EC2 on the web weiterlesen…

Das Amazon Elastic Block Store (EBS) Service

Posted by Edmund Haselwanter on Aug 22, 2008
Tags: amazon, aws, cloud, ebs, ec2

There is a new kid on the block: Amazon Elastic Block Store

weiterlesen…

HAProxy: der High-Availability Load Balancer mit Failover und Session Support

Posted by Edmund Haselwanter on Aug 20, 2008
Tags: amazon, aws, cloud, ec2, high availability

HAProxy seems very promising as a production use software loadbalancer. The only drawback with this solution is that one still has to use some extra piece of middleware to terminate a ssl session (stunnel, apache).

weiterlesen…

Interessante EC2 AMI Images

Posted by Edmund Haselwanter on Aug 19, 2008
Tags: amazon, ami, aws, cloud, ec2

I believe in not inventing the wheel;-) That's another incarnation of DRY ... So a good starting point for AMI images are the ones of Rightscale. weiterlesen…

Poolparty, ein interessantes Projekt für Autoskaliertes Cloud Computing

Posted by Edmund Haselwanter on Aug 21, 2008
Tags: amazon, aws, cloud, ec2, environment-2.0

Poolparty is a very interesting project. It promises easy cloud computing with Amazon EC2. The project undergoes a heavy rewrite of its core, so we ought to stay tuned :-) weiterlesen…

EC2 Deployment einfach gemacht: Capistrano und Capazon

Posted by Edmund Haselwanter on Aug 19, 2008
Tags: amazon, aws, capistrano, cloud, ec2, environment-2.0

Capistrano is a tool for deploying and managing remote servers. Its origin is (ruby based;-) on deploying rails applications. weiterlesen…

Die automatisierte IT-Infrastruktur: Puppet, iClassify, und Capistrano

Posted by Edmund Haselwanter on Aug 27, 2008
Tags: amazon, aws, capistrano, cloud, ec2, environment-2.0, high availability, iclassify, puppet

There is a new hype: cloud computing. Your web site traffic grows? Add a new application server. Want to increase availability? Add a new web server. Among others Amazon offers a whole bunch of infrastructure to support these needs. But it is not enough to fire up a server. The web server should include apache, the app server should include tomcat. The deployment should be aware of the new app server. This is where Puppet, iClassify, and Capistrano come into play. Puppet does the configuration management, installs your desired web and app server.

weiterlesen…

Wie man eine Amazon EC2 Instanz mit Puppet, iClassify und Capistrano bootstraped

Posted by Edmund Haselwanter on Sep 06, 2008
Tags: aws, capistrano, cloud, ec2, iclassify, puppet

Searching through github ( http://github.com/search?q=puppet) I came across a very similar approach on howto bootstrap EC2 images with capistrano puppet and iclassify. ec2-cap is build on top of the Rightscale Amazon EC2 gem (http://rightaws.rubyforge.org/)

http://github.com/adamhjk/ec2-cap/tree/master

The main idea behind this is to

weiterlesen…

Thoughtworks Cruise 1.1 auf Centos 5.2 EC2 mit Github Projekten

Posted by Edmund Haselwanter on Nov 30, 2008
Tags: ami, aws, cruise, cruise control, ec2, environment-2.0, git, github

In this blog post I will show how to launch a Centos 5.2 Amazon ami image, install Cruise 1.1 from Thoughtworks (also known as Cruise Control) and building a Java project, fetched from a github repository. weiterlesen…

Verwende EBS auf einer Centos 5.2 EC2 Instanz und mach Backups auf S3

Posted by Edmund Haselwanter on Mär 06, 2009
Tags: amazon, aws, cloud, cron, ebs, ec2, environment-2.0

Create the volume and assign it to your instance

Attach it to your Centos 5.2 instance

yum install xfsprogs

according to Thread: Debian Lenny and XFS causes kernel panic: Suggested Workaround

mkfs.xfs -l version=1 /dev/sdh

insert into /etc/fstab

/dev/sdh /vol/shared xfs noatime 0 0

mount the volume

mount /vol/shared

weiterlesen…