문제 설명:
오늘 docker로 redis 환경을 설정할 때 yum이 리소스를 가져올 수 없고 인터넷에 연결할 수 없다는 오류가 보고되었습니다.
http://mirrors.aliyun.com/centos/6.10/extras/x86_64/Packages/epel-release-6-8.noarch.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'mirrors.aliyun.com'" Trying other mirror. http://mirrors.neusoft.edu.cn/centos/6.10/extras/x86_64/Packages/epel-release-6-8.noarch.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'mirrors.neusoft.edu.cn'" Trying other mirror. http://mirrors.nwsuaf.edu.cn/centos/6.10/extras/x86_64/Packages/epel-release-6-8.noarch.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'mirrors.nwsuaf.edu.cn'" Trying other mirror. http://mirrors.shu.edu.cn/centos/6.10/extras/x86_64/Packages/epel-release-6-8.noarch.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'mirrors.shu.edu.cn'" Trying other mirror. http://mirrors.sohu.com/centos/6.10/extras/x86_64/Packages/epel-release-6-8.noarch.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'mirrors.sohu.com'" Trying other mirror. http://mirrors.tuna.tsinghua.edu.cn/centos/6.10/extras/x86_64/Packages/epel-release-6-8.noarch.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'mirrors.tuna.tsinghua.edu.cn'" Trying other mirror. http://mirrors.zju.edu.cn/centos/6.10/extras/x86_64/Packages/epel-release-6-8.noarch.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'mirrors.zju.edu.cn'" Trying other mirror.
해결 프로세스:
1. wget 테스트
wget http://mirrors.163.com/.help/CentOS6-Base-163.repo
결과는 오류입니다
unknown host mirrors.163.com
2. ping 테스트
컨테이너 내부
ping www.baidu.com
결과는 여전히 실패합니다
ping: unknown host www.baidu.com
추가 터미널을 열고 호스트(컨테이너 아님)를 입력하세요. ping 명령 테스트를 수행하고 괜찮은지 확인합니다. 기본적으로는 괜찮습니다. 네트워크 문제가 아니라 도커 문제입니다.
해결책:
모든 컨테이너를 중지하고 Docker를 다시 시작하세요.
service docker restart
완료!
추천 튜토리얼: docker 튜토리얼
위 내용은 도커 컨테이너가 외부 네트워크에 ping을 할 수 없는 문제를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!