Deploying to Amazon EC2 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T23:48:47Z http://stackoverflow.com/feeds/question/220052 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/220052/deploying-to-amazon-ec2 4 Deploying to Amazon EC2 Craig 2008-10-20T21:40:48Z 2009-01-15T23:06:01Z <p>Has anyone got much experience deploying applications to Amazons EC2? I am considering doing this in future and wonder about peoples experiences compared to shared hosting and dedicated server hosting are.</p> http://stackoverflow.com/questions/220052/deploying-to-amazon-ec2/220247#220247 4 Answer by Gary Richardson for Deploying to Amazon EC2 Gary Richardson 2008-10-20T23:02:51Z 2008-10-20T23:02:51Z <p>So far, so good. Being able to turn on 5/10/50/100+ machines at a time is awesome. It's even better being able to turn them off and forget about them. You need to change your mindset about how you store your persistent data, but once you have the sky is the limit.</p> <p>Performance wise, small instances are slow. Their fine for load balancers and serving static content, etc, but if you are doing anything processor intensive, you need at least a m1.medium instance.</p> <p>It's all pretty new, so there aren't many tools to help out yet. I'm using <a href="http://reductivelabs.com/trac/puppet/" rel="nofollow">Puppet</a> to configure my hosts and I have a set of PHP scripts for starting up clusters. I use LDAP as a host inventory database. </p> <p>If you don't have the need/urge to build your own, see <a href="http://rightscale.com/" rel="nofollow">Rightscale</a> for some really awesome tools for deploying/growing apps.</p> http://stackoverflow.com/questions/220052/deploying-to-amazon-ec2/245997#245997 0 Answer by Steve Buikhuizen for Deploying to Amazon EC2 Steve Buikhuizen 2008-10-29T06:51:07Z 2008-10-29T06:51:07Z <p>I have an image that has my full stack and a script on each that automates the deployment of wars (java) from an S3 bucket to the local file system. </p> <p>When an image starts the rc2.local runs this script to get the latest wars before starting tomcat. This works well for me</p> http://stackoverflow.com/questions/220052/deploying-to-amazon-ec2/250492#250492 1 Answer by mrhahn for Deploying to Amazon EC2 mrhahn 2008-10-30T15:04:19Z 2008-10-30T15:04:19Z <p>One approach is to setup your instance exactly how you want it locally, using a VMWare image which is then converted to AMI. For example, using <a href="http://thewebfellas.com/blog/2008/9/1/creating-an-new-ec2-ami-from-within-vmware-or-from-vmdk-files" rel="nofollow">this script</a></p> http://stackoverflow.com/questions/220052/deploying-to-amazon-ec2/448867#448867 0 Answer by gareth_bowles for Deploying to Amazon EC2 gareth_bowles 2009-01-15T23:06:01Z 2009-01-15T23:06:01Z <p>Cost is quite a big factor that I initially overlooked with EC2. The cheapest small instance costs 10c per instance hours, which comes to about $70 / month if you keep it running all the time. That's quote a bit more than the cheapest hosting solutions.</p> <p>Of course, with EC2 you can choose your operating system and install any software you like, and it's definitely way more cost effective than dedicated hosting if you need a large number of servers.</p> <p>I've read about a hybrid model where people use dedicated servers for their regular workload, but add in extra EC2 instances at times of peak demand.</p>