SSL CERTIFICATE_VERIFY_FAILED in aws cli

后端 未结 11 1129
孤城傲影
孤城傲影 2020-12-29 04:02

I installed AWS CLI on the Windows server 2007 32bit.

aws --version
aws-cli/1.8.8 Python/2.7.9 Windows/2008Server 

I configure aws cl

11条回答
  •  臣服心动
    2020-12-29 04:41

    I ran into a similar issue on Mac OSX in the company/corporate network. If you don't know the proxy URL Get it from your company's network administrator and configure with the following commands.

    Linux, macOS, or Unix

    $ export HTTP_PROXY=http://proxy.example.com:1234
    $ export HTTPS_PROXY=https://proxy.example.com:1234
    

    Windows

    $ set HTTP_PROXY=http://proxy.example.com:1234
    $ set HTTPS_PROXY=https://proxy.example.com:1234
    

    More information

提交回复
热议问题