반응형
■ 에러발생
에러) yum을 통한 작업을 진행하던 중 아래와 같은 에러가 발생하였다.
Loaded plugins: fastestmirror Error getting repository data for webtatic, repository not found |
■ 해결방법
01. YUM Webtatic 저장소가 추가 되었는지 확인한다.
# rpm -qa | grep webtatic-release |
위와같이 아무런 값이 나오지 않으면 YUM Webtatic 저장소가 존재하지 않는 것이다.
02. YUM Webtatic 저장소를 설치한다.
# rpm -Uvh http://mirror.webtatic.com/yum/centos/5/latest.rpm |
03. 위와같이 설치가 완료되면 01번 작업과 같이 설치가 완료되었는지 확인한다.
# rpm -qa | grep webtatic-release |
# yum repolist --enablerepo=webtatic | grep webtatic |
04. 이제 정상적으로 작동하는 모습을 볼 수 있다.
반응형
'Cent OS' 카테고리의 다른 글
[CentOS] Loaded plugins: fastestmirror, langpacks You need to be root to perform this command. (0) | 2015.02.04 |
---|---|
[CentOS] Tomcat 설치하기 (0) | 2014.11.07 |
[CentOS] JDK 설치하기 (0) | 2014.11.07 |
[CentOS] CentOS에서 JDK 제거하기 (0) | 2014.11.07 |
[CentOS] 한글깨짐 해결방법 (1) | 2014.11.07 |