0

I have MySQL 5.6 installed on cent os. I am trying to update it to 5.7, but yum packages contain only mysql57-community-dmr version, not mysql57-community, seems like my list of packages is outdated, is there any way to update it?

ruslan5t
  • 257
  • 3
  • 16

1 Answers1

0

First, check that you have the MySQL repo enabled:

yum repolist enabled | grep "mysql.*-community.*"

Then do this:

yum clean all

and then re-check for updates using yum.

dr_
  • 2,400
  • 1
  • 25
  • 39