Transfer Data from EC2 to S3

0

I plan on deleting/deactivating my instances of EC2, but before I do so, I want to transfer all my existing data from EC2 to S3 so I have a copy for permanent storage. How do I do this?

2 回答
3
  1. Create a role for EC2 with a policy including PutObject to the objects in the bucket. The policy looks like this:
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "Stmt1647624289157",
      "Action": [
        "s3:PutObject"
      ],
      "Effect": "Allow",
      "Resource": "arn:aws:s3:::mybucket/*"
    }
  ]
}
  1. Assign the role to the instance.
  2. On the instance, copy the files:
aws s3 cp . s3://mybucket --recursive
  1. Remove role from instance & delete the role and policy
profile pictureAWS
专家
kentrad
已回答 2 年前
0

Assuming you have the data in an EBS, you could do this via DataSync.

Since it is currently not possible to transfer via DataSync from an EBS you need an NFS server to share the data directories with a DataSync agent. You can install an NFS server on your EC2 instance or create a snapshot of it, then create a volume from the snapshot and attach it to an instance that will act as an NFS server.

Once you have the NFS, follow the necessary steps in DataSync:

  • create an agent.
  • create a source location which is the NFS and a destination location which is your S3 bucket.
  • create a copy task and launch it.
Imobach
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则