본문 바로가기

지식창고/Linux

[리눅스/Linux] yum 명령어 Could not resolve host: mirrorlist.centos.org ... 오류 발생 시 조치 방법

반응형
#1. 개요
  • yum 명령어 입력 시 Could not resolve host: mirrorlist.centos.org ... 등 오류 발생 시 조치 방법을 정리하는 용도로 해당 포스팅을 작성합니다.
  • 처음 서버를 세팅하는 경우 네트워크 설정 중 몇 가지를 하지 않아 발생하는 문제로 보여집니다.
  • CentOS 7 버전에서 테스트함을 알려드립니다.
  • 오류 메세지
# yum repolist
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Could not retrieve mirrorlist http://mirrorlist.centos.org/?elease=7&arch=x86_64&repo=os&infra=stock error was
14: curl#6 - "Could not resolve host: mirrorlist.centos.org; 알 수 없는 오류"
Loading mirror speeds from cached hostfile
Loading mirror speeds from cached hostfile
Loading mirror speeds from cached hostfile
repo id repo name status
base/7/x86_64 CentOS-7 - Base 0
extras/7/x86_64 CentOS-7 - Extras 0
updates/7/x86_64 CentOS-7 - Updates 0
repolist: 0
#2. 방화벽 확인
  • systemctl status firewalld 명령어로 서버 방화벽 상태 확인
  • 실행 중일 경우 중지 
#3. /etc/sysconfig/network 파일 확인
  • cat /etc/sysconfig/network 입력 시 GATEWAY 값 설정 확인
  • 네트워크 재시작 필수
# cat /etc/sysconfig/network

# Created by anaconda
GATEWAY=192.168.100.254
#4. DNS 설정 확인
  • cat /etc/resolv.conf 입력 시 DNS 값 설정 확인
  • 네트워크 재시작 필수
# cat /etc/resolv.conf

# kt dns
nameserver 168.126.63.1
nameserver 168.126.63.2
#5. ping 체크
  • ping 8.8.8.8 (구글)로 ping 체크
# ping 8.8.8.8

PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_seq=1 ttl=113 time=34.6 ms
64 bytes from 8.8.8.8: icmp_seq=2 ttl=113 time=34.7 ms
64 bytes from 8.8.8.8: icmp_seq=3 ttl=113 time=34.8 ms
64 bytes from 8.8.8.8: icmp_seq=4 ttl=113 time=34.0 ms
^C
--- 8.8.8.8 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3012ms
rtt min/avg/max/mdev = 34.059/34.575/34.805/0.302 ms

 

반응형