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 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南