Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Vue
- android
- Algorithm
- django
- AndroidStudio
- 코테
- 백준
- codingtest
- 동적계획법
- 안드로이드
- DFS와BFS
- cos
- vuejs
- 코드품앗이
- 알고리즘
- DFS
- 안드로이드스튜디오
- cos pro 1급
- Python
- 분할정복
- 개발
- BAEKJOON
- cos pro
- Flutter
- 코딩테스트
- DART
- 파이썬
- C++
- issue
- 동적계획법과최단거리역추적
Archives
- Today
- Total
Development Artist
[Issue, Linux, Yum]Could not retrieve mirrorlist http://mirrorlist.centos.org.~ One of the configured repositories failed (Unknown) 본문
TroubleShooting/Linux Issue
[Issue, Linux, Yum]Could not retrieve mirrorlist http://mirrorlist.centos.org.~ One of the configured repositories failed (Unknown)
JMcunst 2022. 12. 24. 01:13728x90
반응형
이슈
VM 하나를 생성하여 Centos 7 OS를 설치하고, yum -y update 명령어를 쳤는데, 다음과 같은 이슈 발생.
해결
고정 IP 설정 한 부분을 원복하고 재부팅.
원인
보통은 yum repo 엔드포인트까지 가는 경로 어딘가에 막히는 경우이다.
그래서 firewalld을 체크하던지, Centos의 경우 selinux가 활성화 되어 있는지 체크해본다.
https://jmcunst.tistory.com/274
추가적으로 route 명령어를 통해 gateway가 제대로 설치되었는지, nslookup 명령어를 통해 DNS가 제대로 resolving 하고 있는지도 체크해 볼 수 있을 것 같다.
하지만, 이번의 경우에는 VM의 ip를 고정하기 위해 set up 했던
/etc/sysconfig/network-scripts/ifcfg-[ens number] 파일에서 아래와 같은 속성값을 설정한 것이 원인이 되었다.
BOOTPROTO="none"
IPADDR=[고정 하는 IP]
NETMASK=[서브넷마스크]
GATEWAY=[게이트웨이]
BOOTPROTO="dhcp"로 바꿔주고, IPADDR, NETMASK, GATEWAY 의 정보를 지워주었다.
그리고 reboot을 하니 정상적으로 동작할 수 있었다.
Addtional
https://jmcunst.tistory.com/322
추가적으로 해당 링크도 참고해보면 좋을 것이다.
728x90
반응형
'TroubleShooting > Linux Issue' 카테고리의 다른 글
Comments