Proxy tunneling failed: Proxy Authentication RequiredUnable to establish SSL connection

50,069

Solution 1

Your proxy requires authentication. You need to use the --proxy-user and --proxy-password parameters of wget to provide the authentication credentials.

Solution 2

You would need to set the proxy for the wget. Edit your ~/.wgetrc to add;

use_proxy=yes
http_proxy=http://<user>:<password>@<ip>:<port>
https_proxy=https://<user>:<password>@<ip>:<port>

Read more

Share:
50,069

Related videos on Youtube

user255093
Author by

user255093

Updated on September 18, 2022

Comments

  • user255093
    user255093 almost 2 years
    $ wget https://raw.github.com/mseknibilel/OpenStack-Grizzly-Install-Guide/master/KeystoneScripts/keystone_basic.sh
    
    --2014-03-05 12:55:27--  https://raw.github.com/mseknibilel/OpenStack-Grizzly-Install-Guide/master/KeystoneScripts/keystone_basic.sh
    Resolving proxy4.xxxxx.com (proxy4.xxxxx.com)... 10.201.51.54
    

    Connecting to proxy4.xxxxx.com (proxy4.xxxxx.com)|10.201.51.54|:8080... connected. Proxy tunneling failed: Proxy Authentication RequiredUnable to establish SSL connection.

    Could someone let me know, where and in which file I need to set proxy password and user to get wget working?.

  • davidbaumann
    davidbaumann about 6 years
    Please add a short explanation and add the link only for reference.