When I use the wget command in RHEL 6.5, we get an error
Error parsing proxy URL. Bad port number.
The command used to install the proxy server was
export http_proxy="http_proxy://username:password@address:port/".
Yes. I know that this problem can be solved using
http_proxy=address wget --proxy-user=username --proxy-password=<password> url.
But I want to install the package and during installation, it will need to download several other packages. therefore, the proxy server must already be installed and ready for installation. How can we solve this?
Basil source
share