View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0017297 | CentOS-8 | corosync | public | 2020-04-28 10:28 | 2020-09-03 08:56 |
Reporter | lejeczek | Assigned To | |||
Priority | normal | Severity | major | Reproducibility | always |
Status | new | Resolution | open | ||
Product Version | 8.1.1911 | ||||
Summary | 0017297: Conflict exists between AppSteam and HighAvailability module. | ||||
Description | Hi, Conflict exists between AppSteam and HighAvailability module: $ dnf update Last metadata expiration check: 1:28:59 ago on Tue 28 Apr 2020 09:56:07 BST. Error: Problem: package corosync-3.0.2-3.el8_1.1.x86_64 requires corosynclib(x86-64) = 3.0.2-3.el8_1.1, but none of the providers can be installed - cannot install both corosynclib-3.0.3-2.el8.x86_64 and corosynclib-3.0.2-3.el8_1.1.x86_64 - cannot install the best update candidate for package corosynclib-3.0.2-3.el8_1.1.x86_64 - cannot install the best update candidate for package corosync-3.0.2-3.el8_1.1.x86_64 (try to add '--allowerasing' to command line to replace conflicting packages or '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages) $ dnf list --showduplicates corosynclib Last metadata expiration check: 1:29:15 ago on Tue 28 Apr 2020 09:56:07 BST. Installed Packages corosynclib.x86_64 3.0.2-3.el8_1.1 @AppStream Available Packages corosynclib.i686 3.0.2-3.el8 AppStream corosynclib.i686 3.0.2-3.el8 Stream-AppStream corosynclib.x86_64 3.0.2-3.el8 AppStream corosynclib.x86_64 3.0.2-3.el8 Stream-AppStream corosynclib.i686 3.0.2-3.el8_1.1 AppStream corosynclib.i686 3.0.2-3.el8_1.1 HighAvailability corosynclib.i686 3.0.2-3.el8_1.1 Stream-AppStream corosynclib.x86_64 3.0.2-3.el8_1.1 AppStream corosynclib.x86_64 3.0.2-3.el8_1.1 Stream-AppStream corosynclib.i686 3.0.3-2.el8 Stream-AppStream corosynclib.x86_64 3.0.3-2.el8 Stream-AppStream | ||||
Tags | No tags attached. | ||||
Looks like pacemaker stuff was installed from "Stream-HighAvailability" not "HighAvailability" [me@test01$ egrep 'HighAvailability\]' /etc/yum.repos.d/*.repo /etc/yum.repos.d/CentOS-HA.repo:[HighAvailability] /etc/yum.repos.d/CentOS-Stream-HA.repo:[Stream-HighAvailability] [me@test01$ Following command fix my upgrade issue. sudo dnf --enablerepo=Stream-HighAvailability update Ref: https://www.spinics.net/lists/centos-devel/msg18538.html |
|
The real fix should be like following as stated in above Ref URL. dnf config-manager --disable AppStream dnf config-manager --disable BaseOS dnf config-manager --disable extras dnf config-manager --disable PowerTools dnf config-manager --disable HighAvailability dnf config-manager --enable Stream-PowerTools |
|
And this command. dnf config-manager --enable Stream-HighAvailability after that, "dnf update " should be normal again. |
|