-
Notifications
You must be signed in to change notification settings - Fork 712
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 2.6.3 fails to build in bootstrap.sh since it cannot reach dlm.mariadb.org #406
Comments
It seems the old url is not accessible anymore as seen from this discussion, and I found the archive link. where the mariadb-docker seems to be referencing their binary to. this is what I've to make this work for now... if [[ $(uname -p) == "aarch64" ]]; then
wget https://archive.mariadb.org/yum/10.8.6/rhel7-aarch64/rpms/MariaDB-common-10.8.6-1.el7.centos.$(uname -p).rpm -P /mariadb_rpm
wget https://archive.mariadb.org/yum/10.8.6/rhel7-aarch64/rpms/MariaDB-compat-10.8.6-1.el7.centos.$(uname -p).rpm -P /mariadb_rpm
wget https://archive.mariadb.org/yum/10.8.6/rhel7-aarch64/rpms/MariaDB-shared-10.8.6-1.el7.centos.$(uname -p).rpm -P /mariadb_rpm
wget https://archive.mariadb.org/yum/10.8.6/rhel7-aarch64/rpms/MariaDB-devel-10.8.6-1.el7.centos.$(uname -p).rpm -P /mariadb_rpm
else
wget https://archive.mariadb.org/yum/10.8.6/rhel7-amd64/rpms/MariaDB-common-10.8.6-1.el7.centos.$(uname -p).rpm -P /mariadb_rpm
wget https://archive.mariadb.org/yum/10.8.6/rhel7-amd64/rpms/MariaDB-compat-10.8.6-1.el7.centos.$(uname -p).rpm -P /mariadb_rpm
wget https://archive.mariadb.org/yum/10.8.6/rhel7-amd64/rpms/MariaDB-shared-10.8.6-1.el7.centos.$(uname -p).rpm -P /mariadb_rpm
wget https://archive.mariadb.org/yum/10.8.6/rhel7-amd64/rpms/MariaDB-devel-10.8.6-1.el7.centos.$(uname -p).rpm -P /mariadb_rpm
fi My Commit |
Faced the same issue today.. Used the archive link share in the above comment to update script/bootstrap.sh file changed
to
thanks @calvinkmts for pointing me to the right direction! |
no problem @VinayIndoria-Frmbl, happy to help. |
I noticed that for version 2.10.1 we use a different mirror. Not sure if this is an intermittent mariadb domain error or we'd have to use the updated mirror, similar v2.10.1
The text was updated successfully, but these errors were encountered: