복붙노트

[HADOOP] 저장소 : 샌드 박스에 대한 저장소 메타 데이터 (repomd.xml)를 검색 할 수 없습니다. 경로를 확인하고 다시 시도하십시오

HADOOP

저장소 : 샌드 박스에 대한 저장소 메타 데이터 (repomd.xml)를 검색 할 수 없습니다. 경로를 확인하고 다시 시도하십시오

VirtualBox에 HDP 2.6.1이 설치되어 있고 실행하려고합니다.

m 설치 파이썬-핍

그러나 아래 오류가 나타납니다.

http://dev2.hortonworks.com.s3.amazonaws.com/repo/dev/master/utils/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 403 Forbidden"
Trying other mirror.
To address this issue please refer to the below knowledge base article

https://access.redhat.com/solutions/69319

If above article doesn't help to resolve this issue please open a ticket with Red Hat Support.

Error: Cannot retrieve repository metadata (repomd.xml) for repository: sandbox. Please verify its path and try again

MRJob을 설치하려면 pip가 필요하므로 어떻게 pip를 성공적으로 설치할 수 있습니까?

해결법

  1. ==============================

    1.나는 이것을 수정했다.

    나는 이것을 수정했다.

    cd /etc/yum.repos.d  mv sandbox.repo / tmp

    해당 파일을 보면 http://dev2.hortonworks.com.s3.amazonaws.com을 baseurl로 나타냅니다.

    그런 다음 yum install python-pip가 작동했지만 샌드 박스 저장소가 다시 필요한 경우 mv /tmp/sandbox.repo로 다시 이동했습니다.

    편집-도커 이미지에 있지만 VM과 동일 할 것입니다. 에이

  2. ==============================

    2.sandbox.repo에서 enabled 플래그를 0으로 설정할 수 있습니다. 작업을 루트로 수행해야합니다.

    sandbox.repo에서 enabled 플래그를 0으로 설정할 수 있습니다. 작업을 루트로 수행해야합니다.

    # su root 
    # vi /etc/yum.repos.d/sandbox.repo
    

    INSERT 모드로 이동하여 enabled = 1 행을 enabled = 0으로 수정하십시오. 저장 및 종료. 마지막으로 yum clean을 실행하고 설치를 다시 시도하십시오.

    # yum clean all
    
  3. from https://stackoverflow.com/questions/46286326/cannot-retrieve-repository-metadata-repomd-xml-for-repository-sandbox-please by cc-by-sa and MIT license