Done
Details
Details
Assignee
Vadim Yalovets
Vadim YalovetsReporter
C W
C WLabels
Time tracking
4d 1h 30m logged
Components
Fix versions
Affects versions
Priority
Created September 30, 2021 at 10:48 AM
Updated June 27, 2024 at 8:02 AM
Resolved October 4, 2023 at 12:56 PM
When requiring a proxy to reach the outside world, it would appear that it is not possible to use the
percona-release
tool.$ HTTP_PROXY=http://webproxy.xxx:3128 sudo -E percona-release enable tools Specified repository does not exist: http://repo.percona.com/tools/ $ HTTP_PROXY=http://webproxy.xxx:3128 sudo -E curl --head http://repo.percona.com/tools/ curl: (7) Failed connect to repo.percona.com:80; Network is unreachable $ HTTP_PROXY=http://webproxy.xxx:3128 sudo -E bash -c 'echo $HTTP_PROXY' http://webproxy.xxx:3128
This looks to be due to
curl
not accepting the environment variable and instead the-proxy
argument needs to be passed in.