我的用户拥有AmazonS3FullAccess
政策的权限,我的广告名称为abcxyzchristest
。
我已使用上述用户配置AWS cli。
运行aws s3 cp --region eu s3://abcxyzchristest/ abcxyz
时,我得到:
fatal error: An error occurred (InvalidRequest) when calling the ListObjects operation: Missing required header for this request: x-amz-content-sha256
错误的原因是什么?
答案 0 :(得分:1)
这是由于指定的区域不正确。
我必须这样做:
aws s3 cp --region eu-central-1 s3://abcxyzchristest/ bobby
答案 1 :(得分:1)
解决此问题有两个步骤:
1)配置命令行aws
[root@ip-172-31-18-132 ec2-user]# aws configure
AWS Access Key ID [None]:
AWS Secret Access Key [None]:
Default region name [ap-south-1a]: ap-south-1 <-- give your region here
Default output format [None]:
2)在s3 cp命令中指定您的区域
aws s3 cp --recursive s3://buckername /home/ec2-user --region ap-south-1