Guest User

Untitled

a guest
Jan 19th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. [root@localhost ~]# yum update
  2. Loaded plugins: fastestmirror
  3. Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error was
  4. 14: curl#56 - "Recv failure: Connection reset by peer"
  5. Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=extras&infra=stock error was
  6. 14: curl#56 - "Recv failure: Connection reset by peer"
  7.  
  8.  
  9. One of the configured repositories failed (Unknown),
  10. and yum doesn't have enough cached data to continue. At this point the only
  11. safe thing yum can do is fail. There are a few ways to work "fix" this:
  12.  
  13. 1. Contact the upstream for the repository and get them to fix the problem.
  14.  
  15. 2. Reconfigure the baseurl/etc. for the repository, to point to a working
  16. upstream. This is most often useful if you are using a newer
  17. distribution release than is supported by the repository (and the
  18. packages for the previous distribution release still work).
  19.  
  20. 3. Run the command with the repository temporarily disabled
  21. yum --disablerepo=<repoid> ...
  22.  
  23. 4. Disable the repository permanently, so yum won't use it by default. Yum
  24. will then just ignore the repository until you permanently enable it
  25. again or use --enablerepo for temporary usage:
  26.  
  27. yum-config-manager --disable <repoid>
  28. or
  29. subscription-manager repos --disable=<repoid>
  30.  
  31. 5. Configure the failing repository to be skipped, if it is unavailable.
  32. Note that yum will try to contact the repo. when it runs most commands,
  33. so will have to try and fail each time (and thus. yum will be be much
  34. slower). If it is a very temporary problem though, this is often a nice
  35. compromise:
  36.  
  37. yum-config-manager --save --setopt=<repoid>.skip_if_unavailable=true
  38.  
  39. Cannot find a valid baseurl for repo: extras/7/x86_64
Add Comment
Please, Sign In to add comment