In Progress CPANEL-40434 - Cannot upgrade mariadb 10.0 to 10.1, repo is not found

gdimi

Member
Jun 2, 2014
8
2
53
cPanel Access Level
Root Administrator
I am trying to update mariadb from 10.0 to 10.2 on a centos7 with cpanel/whm, but with no success. The problem seems to be that there is no yum repo anymore for mariadb 10.1 and the wizard is trying to do a step by step upgrade from 10.0 to 10.2, by first doing the 10.0 to 10.1 upgrade.

The error is:

The following error occurred while attempting to install the requested packages with yum:

http://yum.mariadb.org/10.1/centos7-amd64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
Trying other mirror.

CentoOS version is 7.9.2009 and cpanel/whm latest versions

Any ideas?

Thanks in advance!
 
Last edited by a moderator:

akhand

Member
Apr 8, 2022
7
1
3
india
cPanel Access Level
Root Administrator
I am trying to update mariadb from 10.0 to 10.2 on a centos7 with cpanel/whm, but with no success. The problem seems to be that there is no yum repo anymore for mariadb 10.1 and the wizard is trying to do a step by step upgrade from 10.0 to 10.2, by first doing the 10.0 to 10.1 upgrade.

The error is:

The following error occurred while attempting to install the requested packages with yum:

http://yum.mariadb.org/10.1/centos7-amd64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
Trying other mirror.

CentoOS version is 7.9.2009 and cpanel/whm latest versions

Any ideas?

Thanks in advance!
try
yum clean all;
 
  • Like
Reactions: cPRex

cPRex

Jurassic Moderator
Staff member
Oct 19, 2014
16,651
2,636
363
cPanel Access Level
Root Administrator
Running "yum clean all" along with "yum makecache" would be a good starting point for this issue, as that would ensure there are no issues with Yum itself on the system. Can you do that and see if that gets things working?
 

timmit

Registered
Dec 7, 2021
4
0
1
Netherlands
cPanel Access Level
Root Administrator
We have an fix, but cPanel preventing the the fix:

Edit /etc/yum.repos.d/MariaDB101.repo to:

[MariaDB101]
name = MariaDB101
baseurl = https://archive.mariadb.org/mariadb-10.1.48/yum/centos6-amd64/
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1


But mysql-upgrade of cPanel is writing over every time the file... An chattr +i gives the error that the MariaDB101.repo is immutible.

We can do the mysql upgrade by hand, but we don't know if that will work correctly.

(And yes it is wrong to upgrade to an EOL version, but if you are on an old mysql version you need to take this path...)
 

timmit

Registered
Dec 7, 2021
4
0
1
Netherlands
cPanel Access Level
Root Administrator
Ok the fix is to bypass the broken generated cPanel repo:

put the above to the end of the /etc/yum.conf so you get:

Code:
#  This is the default, if you make this bigger yum won't see if the metadata
# is newer on the remote and so you'll "gain" the bandwidth of not having to
# download the new metadata and "pay" for it by yum not having correct
# information.
#  It is esp. important, to have correct metadata, for distributions like
# Fedora which don't keep old packages around. If you don't like this checking
# interupting your command line usage, it's much better to have something
# manually check the metadata once an hour (yum-updatesd will do this).
# metadata_expire=90m

# PUT YOUR REPOS HERE OR IN separate files named file.repo
# in /etc/yum.repos.d

[MariaDB101]
name = MariaDB101
baseurl = https://archive.mariadb.org/mariadb-10.1.48/yum/centos6-amd64/
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
PS the bbcode editor is broken I you want to use the code tag....
 

baronn

Active Member
Dec 27, 2017
40
8
58
manchester
cPanel Access Level
Root Administrator
Having a similar issue on multiple boxes this morning. Already on mariadb 10.3 and when daily cron ran this morning for multiple boxes it came with the error:

http://yum.mariadb.org/10.3/centos7-amd64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
Trying other mirror.

tried running:

yum clean all
yum makecache

and then running BUT it has the same result. happening on ALL the boxes we have...

Is there any fix for this?
 

matt1206

Well-Known Member
Dec 20, 2011
60
11
58
cPanel Access Level
Root Administrator
Having a similar issue on multiple boxes this morning. Already on mariadb 10.3 and when daily cron ran this morning for multiple boxes it came with the error:

http://yum.mariadb.org/10.3/centos7-amd64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
Trying other mirror.

tried running:

yum clean all
yum makecache

and then running BUT it has the same result. happening on ALL the boxes we have...

Is there any fix for this?