구성된 저장소 중 하나가 실패했습니다.

구성된 저장소 중 하나가 실패했습니다.

검색했지만 이 오류에 대한 해결책을 찾을 수 없습니다. RPM 패키지를 실행하거나 설치하려고 할 때 yum update이런 일이 발생합니다 .

One of the configured repositories failed (Unknown), 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. Run the command with the repository temporarily disabled
        yum --disablerepo=<repoid> ...

 4. Disable the repository permanently, 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 <repoid>
    or
        subscription-manager repos --disable=<repoid>

 5. 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=<repoid>.skip_if_unavailable=true

Cannot find a valid baseurl for repo: base/7/x86_64

이 문제는 활성화된 유일한 항목이므로 CentOS-Base 저장소에 존재하는 것 같습니다.

repo id                 repo name                               status
base/7/x86_64           CentOS-7 - Base                           0
extras/7/x86_64         CentOS-7 - Extras                         0
updates/7/x86_64        CentOS-7 - Updates                        0
repolist: 0

내가 시도한 것들:

  • 컬을 사용하여 미러 목록 URL을 사용할 수 있는지 확인하고 200을 반환합니다.
  • 저장소의 baseurl 주석을 해제하면 또 다른 오류가 발생합니다. 요청한 데이터 유형을 주로 사용할 수 없습니다. baseurl을 다시 주석 처리한 후에도 이 새로운 오류는 사라지지 않습니다.
  • yum clean all, 요청된 데이터 유형 오류가 사라집니다.

이에 대해 귀하가 제공할 수 있는 도움을 주시면 감사하겠습니다.

관련 정보