|
|
Home | Switchboard | Unix Administration | Red Hat | TCP/IP Networks | Neoliberalism | Toxic Managers |
| (slightly skeptical) Educational society promoting "Back to basics" movement against IT overcomplexity and bastardization of classic Unix | |||||||
Yum works with proxy perfectly well. But you need to to be careful -- setting of environment variable http-proxy should be the same as proxy setting in /etc/yum.conf.
Those guys from RHEL lost all architectural vision and do some really strange and potentially harmful things. For example if you look at /etc/yum.repos.d (which actually should be in yum dorecty if you ask me) you will see that they have proxy setting in redhat.repo file.
If you change your proxy you need to correct this file, which is far from evident.
See for example Managing Software with yum
Using
yumwith a Proxy ServerBy default,
yumaccesses network repositories with HTTP. AllyumHTTP operations use HTTP/1.1, and are compatible with web proxy servers that support this standard. You may also access FTP repositories, and configureyumto use an FTP proxy server. Thesquidpackage provides a proxy service for both HTTP/1.1 and FTP connections.
! Modifying yumfor Network CompatibilityRefer to the manpage foryum.conffor information on HTTP settings that may be modified for compatibility with nonstandard web proxy servers. Alternatively, configureyumto use an FTP proxy server, and access repositories that support FTP. The Fedora repositories support both HTTP and FTP.Configuring Proxy Server Access
To enable all
yumoperations to use a proxy server, specify the proxy server details in/etc/yum.confJust setting variables might not be enough
- The
proxysetting must specify the proxy server as a complete URL, including the TCP port number.- If your proxy server requires a username and password, specify these by adding
proxy_usernameandproxy_passwordsettings.The settings below enable
yumto use the proxy servermycache.mydomain.com, connecting to port 3128, with the usernameyum-userand the passwordqwerty.# # The proxy server - proxy server:port number # proxy=http://mycache.mydomain.com:3128 # note that port needs to be specified if it is different from the default (80)# The account details for yum connections proxy_username=yum-user proxy_password=qwertyConfiguration File Settings for Using A Proxy Server
! Global Settings If you define a proxy server in /etc/yum.conf, all users connect to the proxy server with those details when usingyum.Configuring Proxy Server Access for a Single User
To enable proxy access for a specific user, add the lines in the example box below to the user's shell profile. For the default
bashshell, the profile is the file~/.bash_profile. The settings below enableyumto use the proxy servermycache.mydomain.com, connecting to port 3128.# The Web proxy server used by this account http_proxy="http://mycache.mydomain.com:3128" export http_proxyProfile Settings for Using a Proxy Server
If the proxy server requires a username and password, add these to the URL. To include the username
yum-userand the passwordqwerty, add these settings:# The Web proxy server, with the username and password for this account http_proxy="http://yum-user:[email protected]:3128" export http_proxyProfile Settings for a Secured Proxy Server
! The http_proxyEnvironment VariableThe http_proxyenvironment variable is also used bycurland other utilities. Althoughyumitself may usehttp_proxyin either upper-case or lower-case,curlrequires the name of the variable to be in lower-case.