Hosting, deploying and running web applications in the cloud - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T02:23:57Zhttp://stackoverflow.com/feeds/question/327608http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/327608/hosting-deploying-and-running-web-applications-in-the-cloud2Hosting, deploying and running web applications in the cloudbluenote2008-11-29T15:10:10Z2008-11-29T15:53:15Z
<p>So far I've read some blog articles about cloud computing and services for hosting applications in the grid. </p>
<p>If I'd wanted to have a web application running in the cloud for as little cost as possible, what would be the best solution?</p>
<p>Let's assume the following configuration:</p>
<ul>
<li>J2EE web application </li>
<li>Any free database (MySQL, PostgreSQL)</li>
<li>Any web container to deploy the web application to</li>
</ul>
<p>What application stack would you suggest to be the best combination of services to </p>
<ol>
<li>host </li>
<li>deploy</li>
<li>run</li>
</ol>
<p>web applications? </p>
<p>As an additional requirement, the services chosen shouldn't require a lot about server management like firewall settings etc.</p>
http://stackoverflow.com/questions/327608/hosting-deploying-and-running-web-applications-in-the-cloud/327631#3276311Answer by Vincent Ramdhanie for Hosting, deploying and running web applications in the cloudVincent Ramdhanie2008-11-29T15:44:25Z2008-11-29T15:44:25Z<p>I have investigated <a href="http://aws.amazon.com/ec2/" rel="nofollow">Amazon's ec2</a> solution recently. It is quite good and there are many pre-built boxes that you can use if you find one that suits your need. I think there will still be some server management involved...you cannot get away from that. But the pre built boxes will make it easier.</p>
<p>The cost is reasonable as you only pay for what you use.</p>
<p>[EDIT] The pre-built boxes are called Amazon Machine Images (AMIs).</p>
http://stackoverflow.com/questions/327608/hosting-deploying-and-running-web-applications-in-the-cloud/327634#3276341Answer by carson for Hosting, deploying and running web applications in the cloudcarson2008-11-29T15:47:26Z2008-11-29T15:53:15Z<p>This space is changing very quickly right now so I think you will find a lot of different good answers. If I where to do something on the cheap right now I would probably pick the following stack:</p>
<ul>
<li>Web server: apache</li>
<li>App server: tomcat - use the <a href="http://tomcat.apache.org/tomcat-5.5-doc/cluster-howto.html" rel="nofollow">clustering support</a> if you need to grow or split at the <a href="http://httpd.apache.org/docs/2.2/mod/mod_proxy_balancer.html" rel="nofollow">apache level</a> or even introduce a <a href="http://www.apsis.ch/pound/" rel="nofollow">load balancer</a> box at the very front</li>
<li>DB server: MySql - mainly because it is easy to cluster</li>
<li>Platform: <a href="http://scalr.net" rel="nofollow">scalr</a> - The cloud setup is simple and cheap. It uses <a href="http://aws.amazon.com/" rel="nofollow">Amazon's cloud</a> on the backend and that gets you a lot of extras like putting servers in different datacenters for redundancy.</li>
</ul>
<p>Now you can add in or remove parts of this. You may not need a web tier out there and can just expose tomcat directly. You may need EJBs and in that case you can just fire up more nodes for that and create another tier. You may want to add a tier for load balancing in front of apache. You may want to use the <a href="http://aws.amazon.com/cloudfront/" rel="nofollow">Amazon cloudfront</a> service to push static files to their edge network.</p>