Neel
Neel

Reputation: 429

How to move an image file from amazon s3 to amazon ec2 and run the instance using java

I am a newbie to cloud computing technology and want to move an image file from amazon s3 to amazon ec2 and run it. I will be using JAVA.

Please help me.

Thanks in advance.

best regards, Nil

Upvotes: 0

Views: 439

Answers (1)

Geoff Appleford
Geoff Appleford

Reputation: 18832

You don't move an image from S3 to an existing EC2 instance and run it. Instead you can use the Amazon EC2 API to start and stop your instances. See RunInstances or StartInstances in the docs.

You can also perform these functions using the AWS SDK for Java

There are a lot of Amazon services available but they are well documented online. You need to give these a good read to understand how they all play together.

Upvotes: 2

Related Questions