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

社会主义新天地 提交于 2019-12-10 09:55:45

问题


I have HDP 2.6.1 installed on VirtualBox and am attempting to run

yum install python-pip

However, the error below appears:

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

As I need pip to install MRJob, how can I sucessfuly install pip?


回答1:


I fixed this by:

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

If you look in that file you see it refers to the http://dev2.hortonworks.com.s3.amazonaws.com as baseurl.

Then the yum install python-pip worked but just in case I need that sandbox repo again I moved it back mv /tmp/sandbox.repo .

EDIT - I am on the docker image but I guess would be the same for the VM. A




回答2:


You can set the enabled flag as 0 inside sandbox.repo. You will need to perform the operation as root.

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

Go to INSERT mode and modify the line enabled=1 to enabled=0. Save and Exit. Finally, run a yum clean and try the installations again.

# yum clean all


来源:https://stackoverflow.com/questions/46286326/cannot-retrieve-repository-metadata-repomd-xml-for-repository-sandbox-please

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!