Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Amazon web services: Where to start

I am a recent grad and wanted to learn about doing web application using AWS. I have gone through the documentation and ran their sample Travel Log application Successfully.

But still I am not clear about the terminologies used. can anyone explain me the difference between Amazon Simple Storage Service (Amazon S3), Amazon Elastic Compute Cloud (Amazon EC2), Amazon SimpleDB in simple words.

I am looking to come up with a web app that has a signin page and people posting some text there. may i know what services of amazon would be required for me to build this app.

Thanks

like image 305
Ajax3.14 Avatar asked Dec 05 '11 02:12

Ajax3.14


People also ask

Where should a beginner start AWS?

The best place to start as a complete beginner is with the Cloud Practitioner exam. The Cloud Practitioner exam is going to give you a solid basis in AWS.

Can beginners do AWS?

The flexibility and customization of Amazon Web Services for beginners helps them to grow. Amazon's level of customization coupled with its simplicity and user-friendly cloud platform convinces many businesses around the world to opt for their AWS services.

Is it easy to learn AWS for beginners?

Is AWS difficult to learn? It's a steep learning curve and you'll need to understand some technology fundamentals before undertaking AWS training: Client-server technology: the relationship between a client (your laptop browser) and the server (the machine sitting on the back end receiving your browser requests)


1 Answers

Amazon Simple Storage Service (S3) is for load static content , maybe images, videos, or something you want to save, You could think of it like a hard drive for storage.

Amazon Elastic Compute Cloud: ( EC2) basically is your Virtual Operative System, you can install whatever OS you want (Debian, Ubuntu, Fedora, Centos, Windows Server, Suse enterprise). ( if your application uses server side processing this will be its home)

Amazon Simple DB, is a no-sql database system, that you could use for your aplications, and Amazon gives you as a service, but if you want to use something more, you could install yours on EC2, or use RDS for Database server (MySql for example)

If you want to know more, there are some books, like: "programming Amazon EC2" or see Amazon screencast at http://www.youtube.com/user/AmazonWebServices or its presentation on http://www.slideshare.net/AmazonWebServices

like image 166
eveevans Avatar answered Oct 13 '22 18:10

eveevans