Windows版 AWS CLIで(‘Connection aborted.’, error(10060,…がでたときの対処法[AWS]

7月 27, 2020

f:id:Vastee:20180618174144p:plain

エラー発生

Windows PowerShellaws s3 lsを打つと以下のエラーが出た.

> aws s3 ls
('Connection aborted.', error(10060, ...#長いので省略

対処法

# Windows PowerShell上で
$PROXY = "http://xx.xx.x.xx:8080" # プロキシサーバーのアドレスを入力
$env:HTTP_PROXY = $PROXY
$env:HTTPS_PROXY = $PROXY

を打つと直った.

参考にしたサイト

calvintrobinson.com

AWS

Posted by vastee