본문 바로가기
IT

Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

by 병헤는 밤 2023. 10. 15.
반응형

도커 실행시 "Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?" 오류가 발생하는 경우.

 

보통 Docker 가 실행되지 않은 경우 이므로 실행 시켜 주면 해결 

 

sudo systemctl start docker

그런데 실행이 안되는 경우 (Docker가 버전 24로 업데이트 된 후 발생)

sudo systemctl stop docker.socket
sudo systemctl stop containerd
sudo systemctl start docker

경우 아래와 같이 socker daemon과 containerd 까지 종료 후 시작

 

참고 : https://soundprovider.tistory.com/entry/Docker-Cannot-connect-to-the-Docker-daemon-at-unixvarrundockersock-Is-the-docker-daemon-running-%ED%95%B4%EA%B2%B0

 

반응형

댓글