Copy file or folder from amazon S3 to EC2
- Install aws cli in the ec2 instance [if not installed]
-
$ sudo yum install aws-cli
- Configure aws cli
-
$ aws configure
AWS Access Key ID [None]: <your_access_key>
AWS Secret Access Key [None]:<your_secret_key>
Default region name [None]:
Default output format [None]: - Execute sync command in ec2 instance
-
aws s3 sync s3://<path_to_file> <ec2_local_path>