AWS S3 CLI - Could not connect to the endpoint URL

前端 未结 12 1230
情书的邮戳
情书的邮戳 2020-12-07 21:46
$ aws s3 ls

Could not connect to the endpoint URL: \"https://s3.us-east-1a.amazonaws.com/\"

What could be the problem?

12条回答
  •  眼角桃花
    2020-12-07 22:07

    If none of solutions given above works,also check your permissions and firewall settings. In my case adding proxy environment variables did the job.

    For Linux or mac

    $ export HTTP_PROXY=http://:

    $ export HTTPS_PROXY=http://:

    For Windows

    set HTTP_PROXY=http://:

    set HTTPS_PROXY=http://:

提交回复
热议问题