도커 컨테이너가 인터넷에 연결할 수 없습니다. 어떻게 해야 하나요?
学习是最好的投资!
호스트 머신에서 실행sysctl net.ipv4.conf.all.forwarding 이 전달 기능이 켜져 있는지 확인하세요. 활성화되지 않은 경우 sysctl net.ipv4.conf.all.forwarding=1를 실행하여 활성화하세요.
sysctl net.ipv4.conf.all.forwarding
sysctl net.ipv4.conf.all.forwarding=1
이 문제는 방화벽 설정 수정으로 인해 발생한 적이 있으며 Docker 서비스를 다시 시작하면 문제가 해결될 수 있습니다.
작성자는 docker 서비스를 다시 시작할 수 있으며 centos는 service docker restart
service docker restart
호스트 머신에서 실행
sysctl net.ipv4.conf.all.forwarding
이 전달 기능이 켜져 있는지 확인하세요.활성화되지 않은 경우
sysctl net.ipv4.conf.all.forwarding=1
를 실행하여 활성화하세요.이 문제는 방화벽 설정 수정으로 인해 발생한 적이 있으며 Docker 서비스를 다시 시작하면 문제가 해결될 수 있습니다.
작성자는 docker 서비스를 다시 시작할 수 있으며 centos는
service docker restart