Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Amazon AWS tutorials? [closed]

I was wondering if there is any tutorials for Amazon AWS, providing a step-by-step guide through setting up and hosting a simple application? E.g. a simple holiday image list application?

I understand most of the components however I cant seem to link them logically together.

I have an Amazon Free tier account, and I have signed up for the following services: - Amazon EC2 - Amazon S3 - Amazon SimpleDB - Amazon SNS / SQS - Amazon Elastic Beanstalk for Eclipse

Im confused about how to deploy an Elastic Beanstalk application, written in Java and Eclipse, through an EC2 instance etc.

Thanks greatly in advance, U.

like image 799
urema Avatar asked Mar 14 '11 16:03

urema


People also ask

Can AWS be self taught?

AWS Educate offers hundreds of hours of self-paced training and resources for new-to-cloud learners—including hands-on labs in the AWS Management Console. Our easy-to-navigate and adaptive user experience guides you to targeted training content based on your knowledge, goals, interests, and age.

Is AWS certification free for students?

Editor's Note: Amazon Web Services (AWS) Educate is designed specifically for pre-professional learners. The program provides its members with no-cost access to learning content and AWS services designed to build knowledge and skills in cloud computing.

Is Amazon AWS certification free?

Free, on demand digital training. courses cover all AWS services and solutions, and are designed to be consumed by anyone around the globe, at their pace, and at various skill levels.

Is AWS hard to learn?

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)


2 Answers

i found the following videos to be really useful: http://aws.amazon.com/eclipse/

start with the AWS SDK for Java video, then move on to the elastic beanstalk video where you'll deploy the SampleTravelLog webapp from within eclipse.

that should get you and end-to-end sample to play with.

like image 126
Chris Fregly Avatar answered Oct 17 '22 17:10

Chris Fregly


I have tried my hands at writing simple tutorials with SQS and S3 in java. Please check if they can help you a bit? I will be writing on more of AWS services. But this is what I have so far.

SQS http://weblog4j.com/2013/03/20/working-with-amazon-simple-queue-service-using-java/

S3 http://weblog4j.com/2013/03/13/developing-java-web-application-powered-by-amazon-s3/

Listening to SQS using apache camel http://weblog4j.com/2013/04/17/amazon-sqs-listening-to-amazon-sqs-queue-using-apache-camel/

Listening to SQS using apache camel using spring dsl http://weblog4j.com/2013/05/14/amazon-sqs-listening-to-sqs-using-apache-camel-the-spring-dsl-way/

like image 39
Niraj Singh Avatar answered Oct 17 '22 16:10

Niraj Singh