能够无缝地在Mac上设置来自S3存储桶的拉取,但一直在PC(Windows)上进行相同的处理。这是我所做的-沿途的任何帮助将不胜感激。
awscli
安装了pip
aws configure
,并输入正确的访问密钥ID和秘密访问密钥。G:\>aws s3 cp --recursive s3://url-index-given/ .
(出于示例目的,其中的URL替换为url-index-given
)。并收到此错误:
fatal error: Could not connect to the endpoint URL: "https://url-index-given.s3.None.amazonaws.com/?list-type=2&prefix=&encoding-type=url"
我尝试卸载awscli
软件包,并按照Amazon的推荐this process进行了操作。
答案 0 :(得分:4)
该错误表明您在使用Region
时是否给aws configure
赋予了无效值。 (请参阅URL中的None
?这就是该地区通常要去的地方。)
您应该再次运行aws configure
并为其指定一个有效区域(例如us-west-2
)。