[wget] proxy 설정 사용.
ITWeb/개발일반 2021. 9. 6. 20:11Proxy 사용 시 wget 에서도 설정을 해 줄 수 있습니다.
아래와 같이 사용 하시면 됩니다.
[general]
$ wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.14.1-darwin-x86_64.tar.gz
[http]
$ wget -e use_proxy=yes -e http_proxy=proxy.abcdefg.com:8080 http://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.14.1-darwin-x86_64.tar.gz
[https]
$ wget -e use_proxy=yes -e https_proxy=proxy.abcdefg.com:8080 https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.14.1-darwin-x86_64.tar.gz