docker 실행 시 cannot connect to the docker daemon 에러

happy_quokka·2024년 1월 31일
0

Error

목록 보기
5/7

docker 에러

오류

cannot connect to the docker daemon at unix:///var/run/docker.sock. is the docker daemon running?

  • docker ps -a 또는 docker image ls 등 docker를 확인하려고 하자 docker를 실행할 수 없다는 에러가 발생했다

원인

  • docker service가 꺼져있기 때문이다
  • $ sudo systemctl status docker를 실행하면 fail 상태인 것을 확인할 수 있다

해결

  • 아래의 명령어로 다시 실행시켜주면 해결된다
$ sudo systemctl start docker
$ sudo systemctl enable docker

0개의 댓글