Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
10.4.24, 10.4.25, 10.4.26, 10.4.27, 10.4.28
-
Fedora 37
Description
There appears to be a broken repository on https://archive.mariadb.org/. When manually selecting the yum repository for versions 10.4.24-10.4.28, installing MariaDB Server fails with
Downloading error(s): repodata/50a4af1d6779e8011267b3557b29e874e97cf7d83003df58a467be319c858fbf-updateinfo.xml.gz - Cannot download, all mirrors were already tried without success
This is reproducible in a docker container with the following commands
|
docker run --rm -it fedora:latest bash |
|
cat <<EOF >/etc/yum.repos.d/MariaDB.repo |
[mariadb]
|
name=MariaDB
|
baseurl=https://archive.mariadb.org/mariadb-10.4.26/yum/fedora/33/x86_64/ |
gpgkey=https://ftp.osuosl.org/pub/mariadb/yum/RPM-GPG-KEY-MariaDB |
gpgcheck=1
|
EOF
|
|
dnf install -y MariaDB-server |
# Errors during downloading metadata for repository 'mariadb':
|
# - Status code: 404 for https://archive.mariadb.org/mariadb-10.4.26/yum/fedora/33/x86_64/repodata/50a4af1d6779e8011267b3557b29e874e97cf7d83003df58a467be319c858fbf-updateinfo.xml.gz (IP: 138.201.152.105)
|
# Error: Failed to download metadata for repo 'mariadb': Yum repo downloading error: Downloading error(s): repodata/50a4af1d6779e8011267b3557b29e874e97cf7d83003df58a467be319c858fbf-updateinfo.xml.gz - Cannot download, all mirrors were already tried without success
|
|
cat <<EOF >/etc/yum.repos.d/MariaDB.repo |
[mariadb]
|
name=MariaDB
|
baseurl=https://archive.mariadb.org/mariadb-10.4.22/yum/fedora/33/x86_64/ |
gpgkey=https://ftp.osuosl.org/pub/mariadb/yum/RPM-GPG-KEY-MariaDB |
gpgcheck=1
|
EOF
|
|
|
# Separate issue. Latest fedora does not have the earlier required version of boost. Install it manually.
|
dnf install -y http://springdale.princeton.edu/data/springdale/7/x86_64/os/Computational/boost173-program-options-1.73.0-7.sdl7.x86_64.rpm |
|
dnf install -y MariaDB-server |
mariadb --version
|
# mariadb Ver 15.1 Distrib 10.4.22-MariaDB, for Linux (x86_64) using EditLine wrapper |