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.
Pleas开发者_如何学运维e help me.
Thanks in advance.
best regards, Nil
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.
精彩评论