I\'m trying to update Orion ContextBroker using the command yum install contextBroker. Unfortunatelly I get the following error:
Loaded plugins: fast
None of these worked for me (I didn't even try the hacks like manually editing the repo file).
However it worked after a simple yum update -y
For boxes that does not have internet access, you can remove epel
repository:
yum remove epel-release --disablerepo=epel
This happened to me as I accidentally installed epel-release
using rpm
on a prod box.
Try
yum clean all --enablerepo=*
Then
yum update --disablerepo=epel
I've workaround this issue by changing the https entries in epel.repo file to http.
I guess this should work. I solved my problem with this.
$ sudo yum clean all
$ sudo yum --disablerepo="epel" update nss
All of the above did not work for me, but a rebuild of the rpm database, with the following command, did:
sudo rpm --rebuilddb
Thanks all for the help.