如何将图像文件从亚马逊 s3 移动到亚马逊 ec2 并使用 java 运行实例
我是云计算技术的新手,想要将图像文件从亚马逊 s3 移动到亚马逊 ec2 并运行它。我将使用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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无需将映像从 S3 移动到现有 EC2 实例并运行它。相反,您可以使用 Amazon EC2 API 来启动和停止实例。请参阅 RunInstances 或 StartInstances。
您还可以使用 AWS SDK for Java 执行这些功能。
有很多可用的 Amazon 服务,但它们网上有详细记录。您需要仔细阅读这些内容,以了解它们如何一起发挥作用。
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.