1
sudo yum install mysql-community-devel

Error: Package: libkadm5-1.15.1-50.el7.x86_64 (olbase)
           Requires: krb5-libs(x86-64) = 1.15.1-50.el7
           Installed: krb5-libs-1.15.1-55.0.7.el7_9.x86_64 (@hpsarepo)
               krb5-libs(x86-64) = 1.15.1-55.0.7.el7_9
           Available: krb5-libs-1.15.1-50.el7.x86_64 (olbase)
               krb5-libs(x86-64) = 1.15.1-50.el7
Error: Package: krb5-devel-1.15.1-50.el7.x86_64 (olbase)
           Requires: krb5-libs(x86-64) = 1.15.1-50.el7
           Installed: krb5-libs-1.15.1-55.0.7.el7_9.x86_64 (@hpsarepo)
               krb5-libs(x86-64) = 1.15.1-55.0.7.el7_9
           Available: krb5-libs-1.15.1-50.el7.x86_64 (olbase)
               krb5-libs(x86-64) = 1.15.1-50.el7
Error: Package: 1:openssl-devel-1.0.2k-19.0.1.el7.x86_64 (olbase)
           Requires: openssl-libs(x86-64) = 1:1.0.2k-19.0.1.el7
           Installed: 1:openssl-libs-1.0.2k-26.el7_9.x86_64 (@hpsarepo)
               openssl-libs(x86-64) = 1:1.0.2k-26.el7_9
           Available: 1:openssl-libs-1.0.2k-19.0.1.el7.x86_64 (olbase)
               openssl-libs(x86-64) = 1:1.0.2k-19.0.1.el7
Error: Package: libcom_err-devel-1.42.9-19.el7.x86_64 (olbase)
           Requires: libcom_err(x86-64) = 1.42.9-19.el7
           Installed: libcom_err-1.45.4-3.0.7.el7.x86_64 (@hpsarepo)
               libcom_err(x86-64) = 1.45.4-3.0.7.el7
           Available: libcom_err-1.42.9-19.el7.x86_64 (olbase)
               libcom_err(x86-64) = 1.42.9-19.el7
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest

Neither of those suggestions worked.

sudo yum update

didn't change anything

yum clean all; rm -rf /var/cache/yum; yum makecache; yum -v update

Changed nothing.

Installing directly from the rpm had the same results.

A little confused over what to try next.

4
  • At some point in the past you've added an extra repository that included - and installed - newer versions of packages than are expected by mysql-community-devel. Game over, pretty much Commented Aug 8 at 22:41
  • What version of Oracle Linux are you running Commented Aug 8 at 22:43
  • 7.9. A little old... but upgrades here are... difficult. Commented Aug 11 at 14:37
  • 1
    I'm not stunningly familiar with Oracle Linux but it looks like a your "hpsarepo" repo has pushed you to newer versions of what should be standard system libraries. At this point I'd either build a new system with current library versions with a plan to migrate from your older system to the newer/current one, or I'd look for a variation of the mysql-community-devel package that can accept the newer libraries you've got installed. I'm sorry I can't be of more help (hence my not really writing a proper answer) but I don't know how you'd do that for your platform Commented Aug 11 at 16:34

1 Answer 1

0

One thing you could try, although this might break the system if some other application needs the specific versions that came from the hpsarepo repo.

dnf --disablerepo hpsarepo downgrade krb5-libs-1.15.1-50.el7.x86_64 krb5-libs-1.15.1-50.el7.x86_64 openssl-libs-1.0.2k-19.0.1.el7.x86_64 libcom_err-1.42.9-19.el7.x86_64

This might/will bring in other packages to downgrade, but your should then be able to install mysql-community-devel.

The other option is to build mysql from source.

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.