docker 데몬 연결 에러("Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?")

Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 에러 해결 방법

  1. docker 상태 확인
    1
    sudo systemctl status docker

    도커상태를 보면 위와같이 도커가 실행되지 않고 있습니다.
  2. 시스템데몬(system daemon) 명령어로 docker시작합니다.
    1
    sudo systemctl start docker
  3. 다음 명령어로 도커상태를 확인합니다.
    1
    sudo systemctl status docker

    상태 확인 명령어로 보면 도커가 잘 실행되고 있는 것을 확인 할 수 있습니다.
공유하기