CentOS 6.x yum repository 문제로 동작이 안될때
yum update 했더니 아래 처럼 에러메시지가 나오는 경우가 있습니다.
# yum update
... 생략
http://ftp.daum.net/centos/6/os/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
Trying other mirror.
To address this issue please refer to the below knowledge base article
https://access.redhat.com/articles/1320623
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: daum_base. Please verify its path and try again
daum 쪽 레포가 문제가 생긴거 같네요. Daum.repo 를 삭제합니다.
# ls -l /etc/yum.repos.d
-rw-r--r-- 1 root root 1991 Mar 28 19:25 CentOS-Base.repo
-rw-r--r-- 1 root root 647 Mar 28 19:25 CentOS-Debuginfo.repo
-rw-r--r-- 1 root root 289 Mar 28 19:25 CentOS-fasttrack.repo
-rw-r--r-- 1 root root 630 Mar 28 19:25 CentOS-Media.repo
-rw-r--r-- 1 root root 7989 Mar 28 19:25 CentOS-Vault.repo
-rw-r--r-- 1 root root 365 Jun 19 2014 Daum.repo
-rw-r--r-- 1 root root 957 Nov 5 2012 epel.repo
-rw-r--r-- 1 root root 1056 Nov 5 2012 epel-testing.repo
-rw-r--r-- 1 root root 739 Mar 20 2013 mirrors-rpmforge
-rw-r--r-- 1 root root 717 Mar 20 2013 mirrors-rpmforge-extras
-rw-r--r-- 1 root root 728 Mar 20 2013 mirrors-rpmforge-testing
-rw-r--r-- 1 root root 1128 Mar 20 2013 rpmforge.repo
# rm -rf Daum.repo
그리고 yum 캐시폴더도 삭제합니다.
# rm -rf /var/cache/yum/x86_64
# yum clean all
# yum update
이제 잘 됩니다.
'LINUX' 카테고리의 다른 글
RSYNC SSH 포트가 22번이 아닐때 (0) | 2017.04.11 |
---|---|
tar 특정 폴더 제외하고 압축하기 (0) | 2017.04.07 |
CentOS 6.x letsencrypt install (0) | 2017.04.06 |
CentOS 7.x NTP 시간 동기화 (0) | 2017.03.30 |
리눅스 특정 계정만 su 명령어 허용하기 (0) | 2017.03.28 |