리그캣의 개발놀이터

도커 설치 후 도커 명령어 실행 에러 Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 본문

인프라/Docker

도커 설치 후 도커 명령어 실행 에러 Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

리그캣 2019. 5. 25. 14:07

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

 

위와 같은 명령어가 뜨면 docker service가 실행이 안되어있는것이다.

 

$sudo systemctl status docker

 

상태를 확인해 봐라 stop일 것이다

 

아래 명령어를 입력해 주자. 그리고 다시 명령어를 실행해보자

$sudo systemctl start docker

$sudo systemctl enable docker

Comments