Poolparty, a promising tool for cloud computing
Posted by Edmund Haselwanter on Aug 21, 2008
Tags: amazon, aws, cloud, ec2, environment 2.0
Technorati Tags: amazon, aws, cloud, ec2, environment 2.0
Posted by Edmund Haselwanter on Aug 21, 2008
Tags: amazon, aws, cloud, ec2, environment 2.0
Technorati Tags: amazon, aws, cloud, ec2, environment 2.0
Posted by Edmund Haselwanter on Aug 19, 2008
Tags: amazon, aws, capistrano, cloud, ec2, environment 2.0
Technorati Tags: amazon, aws, capistrano, cloud, ec2, environment 2.0
Posted by Edmund Haselwanter on Aug 26, 2008
Tags: amazon, aws, capistrano, cloud, ec2, environment 2.0, high availability, iclassify, puppet
Technorati 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.
Continue Reading…Posted by Edmund Haselwanter on Sep 13, 2008
Tags: environment 2.0, iclassify, puppet
Technorati Tags: environment 2.0, iclassify, puppet
Puppet is great for “implementing” server infrastructure. Puppet has a concept of nodes and classes.
node 'webserver.testing.com' {
include apache
}
class apache {
$packagelist = ["httpd", "webalizer", "mod_ssl"]
package { $packagelist:
ensure => "installed"
}
...
}
Continue Reading…
Posted by Edmund Haselwanter on Nov 30, 2008
Tags: ami, aws, cruise, cruise control, ec2, environment 2.0, git, github
Technorati Tags: ami, aws, cruise, cruise control, ec2, environment 2.0, git, github
Posted by Edmund Haselwanter on Mar 06, 2009
Tags: amazon, aws, cloud, cron, ebs, ec2, environment 2.0
Technorati Tags: amazon, aws, cloud, cron, ebs, ec2, environment 2.0
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
Posted by Edmund Haselwanter on Mar 13, 2009
Tags: chef, environment 2.0, iclassify, opschef, opscode, opscookbook, puppet
Technorati Tags: chef, environment 2.0, iclassify, opschef, opscode, opscookbook, puppet
There is a new kid on the configuration management block Chef from Opscode. Here is a blog post about Puppet vs. Chef.
Chef is kind of Puppet with integrated iClassify and a rubyish configuration DSL. No wonder, Adam Jacob joined forces on Chef.
You can find it on github