When autoscaling my EC2 instances for application, what is the best way to keep every instances in sync?

For example, there are custom settings and application files like below...

  • Apache httpd.conf
  • php.ini
  • PHP source for my application

To get my autoscaling working, all of these must be configured same in each EC2 instances, and I want to know the best practice to sync these elements.

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You could use a private AMI which contains scripts that install software or checkout the code from SVN, etc.. The second possibility to use a deployment framework like chef or puppet.

The way this works with Amazon EC2 is that you can pass user-data to each instance -- generally a script of some sort to run commands, e.g. for bootstrapping. As far as I can see CreateLaunchConfiguration allows you to define that as well.

If running this yourself is too much of an obstacle, I'd recommend a service like:

They all offer some form of scaling.

HTH

link|improve this answer
Thank you for great recommendation! I'll try using chef. – tomodian Dec 12 '10 at 5:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.