HTTPSConnectionPool(host='s3-us-west-1b.amazonaws.com', port=443): Max retries exceeded with url

风格不统一 提交于 2019-12-05 18:37:49

You aren't using a valid endpoint.

s3-us-west-1b.amazonaws.com isn't valid.

S3 endpoints are at the regional level, not the availability zone level.

You're probably looking for s3-us-west-1.amazonaws.com.

http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region

The issue is you have to use just region which you can see from aws console url there you can find region in url just copy it and use which is your region

Availability Zone is different which use have used earlier

Availability zone is followed by region along with region a, region b

availability zone status

Ravi Ramanujam

One possible issue could be that proxy might not have been set in your instance service role. Configure the env to point to your proxy servers via HTTP_PROXY / HTTPS_PROXY (Since the above error displays 443, it should be HTTPS_PROXY).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!