https://bugzilla.redhat.com/show_bug.cgi?id=1187077
Josef Cacek jcacek@redhat.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|CLOSED |NEW CC| |jcacek@redhat.com Resolution|INSUFFICIENT_DATA |--- Keywords| |Reopened
--- Comment #2 from Josef Cacek jcacek@redhat.com --- Reopening. (me too) Seems like an SSL problem when connecting to mirrors.fedoraproject.org
I'm trying fedora:rawhide from Ubuntu (14.04) host:
$ docker run -it fedora:rawhide bash bash-4.3# yum update
One of the configured repositories failed (Fedora - Rawhide - Developmental packages for the next Fedora release), and yum doesn't have enough cached data to continue. At this point the only safe thing yum can do is fail. There are a few ways to work "fix" this:
1. Contact the upstream for the repository and get them to fix the problem.
2. Reconfigure the baseurl/etc. for the repository, to point to a working upstream. This is most often useful if you are using a newer distribution release than is supported by the repository (and the packages for the previous distribution release still work).
3. Disable the repository, so yum won't use it by default. Yum will then just ignore the repository until you permanently enable it again or use --enablerepo for temporary usage:
yum-config-manager --disable rawhide
4. Configure the failing repository to be skipped, if it is unavailable. Note that yum will try to contact the repo. when it runs most commands, so will have to try and fail each time (and thus. yum will be be much slower). If it is a very temporary problem though, this is often a nice compromise:
yum-config-manager --save --setopt=rawhide.skip_if_unavailable=true
Cannot retrieve metalink for repository: rawhide/x86_64. Please verify its path and try again bash-4.3# cat /etc/resolv.conf nameserver 8.8.8.8 nameserver 8.8.4.4 search jck bash-4.3# ping 8.8.8.8 PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data. 64 bytes from 8.8.8.8: icmp_seq=1 ttl=53 time=11.0 ms 64 bytes from 8.8.8.8: icmp_seq=2 ttl=53 time=10.1 ms ^C --- 8.8.8.8 ping statistics --- 2 packets transmitted, 2 received, 0% packet loss, time 1001ms rtt min/avg/max/mdev = 10.140/10.571/11.002/0.431 ms
bash-4.3# curl 'https://mirrors.fedoraproject.org/metalink?repo=fedora-debug-rawhide&arc...' curl: (35) SSL received a record that exceeded the maximum permissible length. bash-4.3# curl -v 'https://mirrors.fedoraproject.org/metalink?repo=fedora-debug-rawhide&arc...' * Hostname was NOT found in DNS cache * Trying 140.211.169.196... * Connected to mirrors.fedoraproject.org (140.211.169.196) port 443 (#0) * Initializing NSS with certpath: sql:/etc/pki/nssdb * CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none * NSS error -12263 (SSL_ERROR_RX_RECORD_TOO_LONG) * SSL received a record that exceeded the maximum permissible length. * Closing connection 0 curl: (35) SSL received a record that exceeded the maximum permissible length.