【发布时间】:2018-05-24 00:59:33
【问题描述】:
我有两个 p2.xlarge 实例(A 和 B),每个实例都有自己的 75 GB EBS 支持存储。我需要从卷 A 中获取所有数据到卷 B。我的第一个想法是启动两个实例和 scp 数据从一个到另一个,但是,根据以下错误消息,这是不允许的:
Error starting instances
You have requested more instances (2) than your current instance limit of 1 allows for the specified instance type. Please visit http://aws.amazon.com/contact-us/ec2-request to request an adjustment to this limit.
我想到了其他几个选项:
- 启动不同类型的新实例并装载卷的副本
A和B给它。然后使用
scp传输数据(这似乎 非常复杂)。 - 制作卷 A 的副本并将其安装在实例 B 上的侧卷上 B(不确定这是否可能)。
- 将数据从卷 A 复制到 S3 存储,然后将其传输到卷 B.
在相同类型的两个实例上从卷 A 获取数据到卷 B 的首选方法或最佳实践是什么?
【问题讨论】:
-
Stack Overflow 是一个编程和开发问题的网站。这个问题似乎离题了,因为它与编程或开发无关。请参阅帮助中心的What topics can I ask about here。也许Web Applications Stack Exchange、Webmaster Stack Exchange 或Unix & Linux Stack Exchange 会是一个更好的提问地点。
标签: linux amazon-web-services ubuntu amazon-ec2 storage