docker
CentOS7에서 Docker 데몬 설치 시 무한 대기 현상 (iptable_nat 이슈)
CentOS7에서 Docker 데몬 설치 시 무한 대기 현상 (iptable_nat 이슈)
2022.04.17최근 CentOS7 서버에서 겪었던 Docker 설치 후 무한 대기하는 현상 관련해서 공유하고자 합니다. TL;DR: 결론적으로 이런 경우 iptable_nat 커널 모듈이 서버에 정상적으로 로딩되어있는지 체크하시기 바랍니다. (modprobe를 통해 체크 가능) 이는 OS 레벨의 퍼포먼스 튜닝목적으로 NAT를 disable한 경우일 수 있습니다. 현상 먼저 리눅스 서버에서 CLI를 통해 아래와 같이 Docker 패키지를 설치할 수 있습니다. (repository 방식) # https://docs.docker.com/engine/install/centos/#install-using-the-repository # on root user yum install -y yum-utils yum-config-man..