Redhat / Fedora Using yum with a proxy
Most companies these days restrict their internet access by forcing the usage of web proxy. If your company is forcing a proxy policy & you are running Redhat/CentOs/Fedora you will have to update your yum.conf to be able to update your desktop or server using yum over a proxy connection. Luckily setting up yum to run over a proxy is an easy task. below is the few steps you need to follow to establish just that.
Edit the file /etc/yum.conf
and add the following lines:
# The proxy server - server: port proxy=http://proxy.mydomain.com:3128 # If proxy authentication is required proxy_username=yum_user proxy_password=yun_user_password The next step is to declare the variable http_proxy to run when the yum rpm get executed to avoid the below error:warning: rpmts_HdrFromFdno: Header V3 DSA signature: nokey, key ID e8562897
To declare the variable http_proxy run:
# export http_proxy='http://proxy.mydomain.com:3128'
This line can be added to the
.bashrc
so you will not have to run it each time you log on.Please let us know if this was useful or on the other hand if it did not work for you by leaving us a comment.
December 21st, 2009 at 3:36 am |
Hi,
After following the above procedure the probblem not yet resolved.
warning: rpmts_HdrFromFdno: Header V3 DSA signature: NOKEY, key ID e8562897
Public key for telnet-server-0.17-39.el5.i386.rpm is not installed
Please help me to resolve the problem.
Regards,
Sathish.A
August 21st, 2011 at 10:22 pm |
This is a nice one. I´ve encountered this post several times this week searching for something alike. Now is in my news box 🙂 Keep up the great work!
November 9th, 2011 at 5:03 pm |
Hi,
I have a domain and username has space meaning domain\User Name
How will i represent this…
November 9th, 2011 at 5:07 pm |
and also o tried the following….sorry didnt mention it earlier…
domain\User Name, DOMAIN\User Name, domain%5CUser%20Name, DOMAIN%5CUser%20Name…none of this worked….then i tried the above on the authentication prompt for browser it didnt work either….
Thanks.
December 31st, 2012 at 2:49 pm |
[…] yum to use the proxy . the fedora wiki http://fedoraproject.org/wiki/Docs/D…Guide/YumProxy and https://linux2aix.com/linux/redha…h-a-proxy.html this is from the fedora 5 docs but it still applies […]