Linux – Installing openssl on RHEL 6.2

linuxopensslredhat-enterprise-linuxyum

Trying to install openssl-devel on RHEL 6.2.

yum install openssl-devel

And i am getting this error:

--> Finished Dependency Resolution
Error: Package: glibc-2.12-1.47.el6.i686 (rhel62)
       Requires: glibc-common = 2.12-1.47.el6
       Removing: glibc-common-2.12-1.47.el6.x86_64 (@anaconda-RedHatEnterpriseLinux-201111171049.x86_64/6.2)
           glibc-common = 2.12-1.47.el6
       Updated By: glibc-common-2.12-1.80.el6_3.7.x86_64 (rhel62-update)
           glibc-common = 2.12-1.80.el6_3.7
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest

–skip-broken does not help.
How can I fix this?


Update:
Fixed by updating ro RHEL 6.4

Best Answer

Have you tried making sure you have up to date information in your RPM databases? Something along the lines yum clean all && yum update might be in order at this point.

Related Question