반응형
Error 상황 및 Message
1. Container 내부에서 pip로 특정 패키지를 설치하려 했으나, Delay가 걸리며 Warning이 뜸
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f8f2dd10320>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',)': /simple/pip/
2. Container 재기동 하려 했으나, 오류 발생
(base) Juhyeon@Juhyeon_PC:/jh/rb/BASE/source/preproc$ docker run -it --rm --gpus all -v "/home/jh:/home/jh" -p 8989:8989 jh/tensorflow2:v1.1
docker: Error response from daemon: driver failed programming external connectivity on endpoint tender_lumiere (357e439c83044a5fa5e3a6440e1cd0802c402aab58d77b1a4d7324f856c2176b): (iptables failed: iptables --wait -t nat -A DOCKER -p tcp -d 0/0 --dport 8989 -j DNAT --to-destination 172.17.0.2:8989 ! -i docker0: iptables: No chain/target/match by that name.
(exit status 1)).
원인 : Docker 사용중에 방화벽의 설정이 변경이 되었음
해결
1. Clear All Chains
$ sudo iptables -t filter -F
$ sudo iptables -t filter -X
2. Then restart Docker Service:
$ systemctl restart docker
반응형
'Development > Docker' 카테고리의 다른 글
[Docker] 도커 이미지와 컨테이너 조회 및 삭제 방법 (사용X 포함) (0) | 2022.05.10 |
---|---|
[Docker] 컨테이너의 Jupyter Notebook 기본 Shell을 bash로 변경 및 설정하는 방법 (0) | 2022.05.10 |
[Linux & Docker] VS Code로 Docker Container에 접속하기 (0) | 2022.02.10 |
[Docker] flask API Container 구현 (0) | 2022.01.06 |
[Docker] Container 에서 Jupyter Notebook 실행 시 비밀번호 설정 (0) | 2021.12.27 |
댓글