Average Amazon EC2 Instance Price for WEB HOSTING - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T00:10:59Z http://stackoverflow.com/feeds/question/376273 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/376273/average-amazon-ec2-instance-price-for-web-hosting 3 Average Amazon EC2 Instance Price for WEB HOSTING Geo 2008-12-17T22:26:07Z 2009-06-27T07:29:14Z <p>Our company is thinking about switching IT hosting strategy for the long run. We have been playing with some EC2 instances and we are interested in looking at a possible switch over cloud computing. Our only option is not amazon but is definitely one of the famous. </p> <p>I know that there are different instance options in terms of pricing. I am wondering if there is a rule of thumb (bulkpark figure) for pricing per hour for an entire instance. This means: Including the instance price, a fair amount of BW, EBS pricing, I/O and all that good stuff. So We can make a reasonable comparison with the traditional hosting companies. This pricing might depend on the amount of traffic per server and a lot of other variables, but we are looking at an average figure, some servers could be more some others could be less. </p> <p>Well, I know this might be useful to other people out there that are thinking on the switch over.</p> http://stackoverflow.com/questions/376273/average-amazon-ec2-instance-price-for-web-hosting/376637#376637 4 Answer by Gary Richardson for Average Amazon EC2 Instance Price for WEB HOSTING Gary Richardson 2008-12-18T01:33:27Z 2008-12-18T01:33:27Z <p>I don't think AWS compares well for straight web hosting -- it's more for large scale apps that have dramatic peaks.</p> <p>If you do go the EC2 route for hosting your website:</p> <ul> <li>Don't use an m1.small instance. Use at least a c1.medium. m1.small instances are underpowered, especially for dynamic sites.</li> <li>I doubt you'll need EBS, unless you have a very large website. The m1.small instances have about 150GB of space available on them, and it only goes up from there. Unless you plan on doing something special, you won't need it.</li> <li>Stick your assets in S3 and serve them up with CloudFront -- save your web server cpu time for processing dynamic content.</li> </ul> <p>There is an <a href="http://calculator.s3.amazonaws.com/calc5.html" rel="nofollow">AWS calculator</a> available as well. I plugged in two c1.medium instances (~1500 hours), 512GB of bandwidth, plus 1TB of cloudfront bandwidth over 1 million requests. It came out to about $600/month.</p> http://stackoverflow.com/questions/376273/average-amazon-ec2-instance-price-for-web-hosting/476523#476523 4 Answer by Brad Larson for Average Amazon EC2 Instance Price for WEB HOSTING Brad Larson 2009-01-24T19:27:39Z 2009-01-24T19:27:39Z <p><a href="http://www.sunsetlakesoftware.com/" rel="nofollow">My website</a> is completely hosted on Amazon EC2. In fact, I <a href="http://www.sunsetlakesoftware.com/2008/09/13/running-drupal-website-amazon-ec2" rel="nofollow">have posted a guide</a> to configuring and running a similar Drupal-based website (or any website, really) on EC2.</p> <p>My current hosting bill is ~$72 per month. I run a small instance, for which performance has been excellent. Now, I only see ~400-500 hits per day, with the highest spike being ~10,000 hits in a day, but from my tests it can support much more than that. All of my persistent data (MySQL, HTML files, logs, etc.) are stored on an Elastic Block Store which is snapshotted to S3 every hour.</p> <p>Don't forget, your entire website is sitting behind the same Amazon fat pipe used to serve their other web services, so you can get some really fast load and transfer times. Billing for EC2 bandwidth is the same as it is for S3, so it scales really well.</p> <p>It might not compare well, cost-wise, to low-end hosting, but I've been very happy with it. The ability to clone a site in a couple of minutes, test a new configuration, then either discard that site or switch over your elastic IP to point to the new site is pretty cool. I've used the revisioned backups of the EBS to roll back to a point before I accidentally deleted something and recover the deleted file.</p> http://stackoverflow.com/questions/376273/average-amazon-ec2-instance-price-for-web-hosting/600832#600832 0 Answer by Ben for Average Amazon EC2 Instance Price for WEB HOSTING Ben 2009-03-01T23:33:15Z 2009-03-01T23:33:15Z <p>Thanks Guys this was very useful information to me. I am trying to find the best EC2 configuration to suit my needs. I think AWS has it over Microsoft Azure. Cheers Ben</p>