Metadata
- Source
- INFRA-237
- Type
- Bug
- Priority
- Major
- Status
- Closed
- Resolution
- Fixed
- Assignee
- Giovanni Tirloni
- Reporter
- Giovanni Tirloni
- Created
2020-04-20T13:55:20.390-0400 - Updated
2020-04-20T14:27:56.569-0400 - Versions
- N/A
- Fixed Versions
- N/A
- Component
- N/A
Description
From i-0033:
# yum install gcc
Loaded plugins: fastestmirror, versionlock
Determining fastest mirrors
managed__centos-base | 3.6 kB 00:00:00
managed__centos-extras | 3.4 kB 00:00:00
managed__centos-updates | 3.4 kB 00:00:00
managed__docker | 3.5 kB 00:00:00
managed__epel | 4.7 kB 00:00:00
managed__idi | 2.9 kB 00:00:00
(1/10): managed__centos-base/7/x86_64/group_gz | 166 kB 00:00:00
(2/10): managed__centos-updates/7/x86_64/primary_db | 2.5 MB 00:00:00
(3/10): managed__docker/x86_64/updateinfo | 55 B 00:00:00
managed__epel/x86_64/group_gz FAILED
http://mirror.incd.ca/epel/7/x86_64/repodata/c9f40040677b457cbb2e69a9ac92b943a1808c71a1d04771cb439133e5bd0c2a-comps-Everything.x86_64.xml.gz: [Errno 14] HTTPS Error 404 - Not Found 0.0 B/s | 166 kB --:--:-- ETA
Trying other mirror.
To address this issue please refer to the below wiki article
https://wiki.centos.org/yum-errors
If above article doesn't help to resolve this issue please use https://bugs.centos.org/.
(4/10): managed__centos-base/7/x86_64/primary_db | 6.0 MB 00:00:00
(5/10): managed__centos-extras/7/x86_64/primary_db | 180 kB 00:00:00
(6/10): managed__docker/x86_64/primary_db | 41 kB 00:00:00
managed__epel/x86_64/updateinf FAILED
http://mirror.incd.ca/epel/7/x86_64/repodata/990768aef5c64477e3743e6bcbab0cbbf5cbff148ce9e8f4e434cdea59f8db12-updateinfo.xml.bz2: [Errno 14] HTTPS Error 404 - Not Found ] 0.0 B/s | 166 kB --:--:-- ETA
Trying other mirror.
managed__epel/x86_64/primary_d FAILED
http://mirror.incd.ca/epel/7/x86_64/repodata/ba7b0c2ddb303e8a2482a11d726bba184e9594ce3970e3825d7dedc6f110eb9c-primary.sqlite.bz2: [Errno 14] HTTPS Error 404 - Not Found ] 0.0 B/s | 166 kB --:--:-- ETA
Trying other mirror.
(7/10): managed__idi/x86_64/primary_db | 7.5 kB 00:00:00
managed__epel/x86_64/primary_d FAILED
http://mirror.incd.ca/epel/7/x86_64/repodata/ba7b0c2ddb303e8a2482a11d726bba184e9594ce3970e3825d7dedc6f110eb9c-primary.sqlite.bz2: [Errno 14] HTTPS Error 404 - Not Found ] 0.0 B/s | 0 B --:--:-- ETA
Trying other mirror.
http://mirror.incd.ca/epel/7/x86_64/repodata/ba7b0c2ddb303e8a2482a11d726bba184e9594ce3970e3825d7dedc6f110eb9c-primary.sqlite.bz2: [Errno 14] HTTPS Error 404 - Not Found
Trying other mirror.
Comments
-
Giovanni Tirloni commented
2020-04-20T14:27:48.452-0400 Mirror is unreliable. Switched to a different mirror.
commit 80b7dc7558b698d660e3e71e32a3b659ac6caaef (HEAD -> master, origin/master, origin/HEAD) Author: Giovanni Tirloni <giovanni.tirloni@gmail.com> Date: Mon Apr 20 15:24:21 2020 -0300 mirror: s/mirrors.rit.edu/mirror.csclub.uwaterloo.ca/ diff --git a/misc/mirror/mirror.sh b/misc/mirror/mirror.sh index 06499a7..1f3ec0a 100755 --- a/misc/mirror/mirror.sh +++ b/misc/mirror/mirror.sh @@ -24,21 +24,21 @@ exlock_now || exit 1 # Fedora # BASEDIR="${HOME}/public_html/fedora" -MIRROR="mirrors.rit.edu" +MIRROR="mirror.csclub.uwaterloo.ca" RSYNC_OPTS=(-avuH --no-motd --delete-after --delete-excluded --exclude source --exclude SRPMS --exclude debug --exclude ppc --exclude ppc64 --exclude ppc64le --exclude i386 --exclude s390 --exclude s390x --exclude sparc --exclude sparc64 --exclude aarch64 --exclude armhfp --exclude arm) -rsync "${RSYNC_OPTS[@]}" "rsync://${MIRROR}/fedora/releases/31/" "${BASEDIR}/releases/31" +rsync "${RSYNC_OPTS[@]}" "rsync://${MIRROR}/fedora-enchilada/linux/releases/31/" "${BASEDIR}/releases/31" -rsync "${RSYNC_OPTS[@]}" "rsync://${MIRROR}/fedora/updates/31/" "${BASEDIR}/updates/31" +rsync "${RSYNC_OPTS[@]}" "rsync://${MIRROR}/fedora-enchilada/linux/updates/31/" "${BASEDIR}/updates/31" # # EPEL # BASEDIR="${HOME}/public_html/epel" -MIRROR="mirrors.rit.edu" -RSYNC_OPTS=(-avuH --no-motd --delete-after --delete-excluded --exclude debug) +MIRROR="mirror.csclub.uwaterloo.ca" +RSYNC_OPTS=(-avuH --no-motd --delete-after --delete-excluded --exclude debug --exclude .~tmp~) -rsync "${RSYNC_OPTS[@]}" "rsync://${MIRROR}/epel/7/x86_64/" "${BASEDIR}/7/x86_64" +rsync "${RSYNC_OPTS[@]}" "rsync://${MIRROR}/fedora-enchilada/epel/7/x86_64/" "${BASEDIR}/7/x86_64" # # CentOS