augeas-libs.i686
Hello Members,
Has anyone run into this problem were by after enabling this repo "rhel-x86_64-rhev-mgmt-agent-6" yum fails updates with the following errors;
This is right after fresh 6.6 install and subscription setup...
[root@pws-hv15 ~]# yum update
Loaded plugins: product-id, security, subscription-manager, versionlock
Setting up Update Process
Resolving Dependencies
--> Running transaction check
---> Package augeas-libs.x86_64 0:1.0.0-5.el6_5.1 will be updated
--> Processing Dependency: augeas-libs = 1.0.0-5.el6_5.1 for package: augeas-1.0.0-5.el6_5.1.x86_64
---> Package augeas-libs.x86_64 0:1.0.0-7.el6 will be an update
--> Running transaction check
---> Package augeas-libs.i686 0:1.0.0-5.el6_5.1 will be installed
--> Processing Dependency: libxml2.so.2(LIBXML2_2.4.30) for package: augeas-libs-1.0.0-5.el6_5.1.i686
--> Processing Dependency: libxml2.so.2 for package: augeas-libs-1.0.0-5.el6_5.1.i686
--> Processing Dependency: libselinux.so.1 for package: augeas-libs-1.0.0-5.el6_5.1.i686
--> Processing Dependency: libc.so.6(GLIBC_2.8) for package: augeas-libs-1.0.0-5.el6_5.1.i686
--> Processing Dependency: libc.so.6(GLIBC_2.4) for package: augeas-libs-1.0.0-5.el6_5.1.i686
--> Processing Dependency: libc.so.6(GLIBC_2.3.4) for package: augeas-libs-1.0.0-5.el6_5.1.i686
--> Processing Dependency: libc.so.6(GLIBC_2.3) for package: augeas-libs-1.0.0-5.el6_5.1.i686
--> Processing Dependency: libc.so.6(GLIBC_2.2) for package: augeas-libs-1.0.0-5.el6_5.1.i686
--> Processing Dependency: libc.so.6(GLIBC_2.1.3) for package: augeas-libs-1.0.0-5.el6_5.1.i686
--> Processing Dependency: libc.so.6(GLIBC_2.1.1) for package: augeas-libs-1.0.0-5.el6_5.1.i686
--> Processing Dependency: libc.so.6(GLIBC_2.1) for package: augeas-libs-1.0.0-5.el6_5.1.i686
--> Processing Dependency: libc.so.6(GLIBC_2.0) for package: augeas-libs-1.0.0-5.el6_5.1.i686
--> Processing Dependency: libc.so.6 for package: augeas-libs-1.0.0-5.el6_5.1.i686
---> Package augeas-libs.x86_64 0:1.0.0-5.el6_5.1 will be updated
---> Package augeas-libs.x86_64 0:1.0.0-5.el6_5.1 will be updated
--> Running transaction check
---> Package glibc.i686 0:2.12-1.149.el6 will be installed
--> Processing Dependency: libfreebl3.so(NSSRAWHASH_3.12.3) for package: glibc-2.12-1.149.el6.i686
--> Processing Dependency: libfreebl3.so for package: glibc-2.12-1.149.el6.i686
---> Package libselinux.i686 0:2.0.94-5.8.el6 will be installed
---> Package libxml2.i686 0:2.7.6-17.el6_6.1 will be installed
--> Processing Dependency: libz.so.1 for package: libxml2-2.7.6-17.el6_6.1.i686
--> Running transaction check
---> Package nss-softokn-freebl.i686 0:3.14.3-18.el6_6 will be installed
---> Package zlib.i686 0:1.2.3-29.el6 will be installed
--> Finished Dependency Resolution
Error: Multilib version problems found. This often means that the root
cause is something else and multilib version checking is just
pointing out that there is a problem. Eg.:
1. You have an upgrade for augeas-libs which is missing some
dependency that another package requires. Yum is trying to
solve this by installing an older version of augeas-libs of the
different architecture. If you exclude the bad architecture
yum will tell you what the root cause is (which package
requires what). You can try redoing the upgrade with
--exclude augeas-libs.otherarch ... this should give you an error
message showing the root cause of the problem.
2. You have multiple architectures of augeas-libs installed, but
yum can only see an upgrade for one of those arcitectures.
If you don't want/need both architectures anymore then you
can remove the one with the missing update and everything
will work.
3. You have duplicate versions of augeas-libs installed already.
You can use "yum check" to get yum show these errors.
...you can also use --setopt=protected_multilib=false to remove
this checking, however this is almost never the correct thing to
do as something else is very likely to go wrong (often causing
much more problems).
Protected multilib versions: augeas-libs-1.0.0-5.el6_5.1.i686 != augeas-libs-1.0.0-7.el6.x86_64
Responses
Hi Mik,
This is a little strange as RHEL 6.6 already contains augeas-libs-1.0.0-7.el6.x86_64.rpm ("out of the box") -- i.e. the version to which YUM is trying to upgrade in your case. Since you're saying that this happens on a fresh install of 6.6, it doesn't make much sense.
Did you try to follow any of the three solutions YUM suggests?
I have seen this issue. I followed the recommendations and they provided no help. For me it was an issue with repos. What repositories do you have setup? # yum repolist will display your enabled repos info.
Hi,
The actual issue is caused by augeas, not augeas-libs. You seem to have augeas-1.0.0-5.el6_5.1.x86_64 and augeas-libs.-1.0.0-5.el6_5.1.x86_64, but 'yum update' only sees an update of augeas-libs. Since the old augeas can't be installed without the same version-release of augeas-libs, Yum tries including the 32-bit package into the transaction, hoping it will satisfy the dependencies. However, the transaction eventually fails because you can't have mismatching 32- and 64-bit instances of augeas-libs..
Where do you have augeas from? Note that this package is part of the Optional repo. If you don't have/need this repo anymore, you ought to uninstall augeas.
Matt Marks was on the right track. 'augeas-libs' is in the rhel-6-server-rpms repo, but 'augeas' itself is in 'rhel-6-server-optional-rpms'. Adding or enabling that repo will fix this problem (by correctly updating both 'augeas' and 'augeas-libs' in sync).
I've seen this with some perl-related packages as well; somewhere between RHEL 6.4 and 6.6, the "server-optional" repository became no longer optional, since there are now dependencies from the main 'rhel-6-server-rpms" to packages in "server-optional". And the 'yum' output is utterly unhelpful in identifying the real cause (and solution), without a very close reading of the output and a knowledge of precisely which packages are in which repositories (or, just recognizing the problem symptom from having seen it before. But figuring it out the first time is a real bear).
Yes, that was my point. I was not able to get back to this until today. I'm not sure if you need augeas, and augeas-libs, but if you do you will need to add the "optional" repo as James pointed out.
Welcome! Check out the Getting Started with Red Hat page for quick tours and guides for common tasks.
