경로 및 정보
도커 설치 후 도커 명령어 실행 에러 Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? (펌)
wtdsoul
2025. 2. 1. 22:44
https://league-cat.tistory.com/347
도커 설치 후 도커 명령어 실행 에러 Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the dock
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 위와 같은 명령어가 뜨면 docker service가 실행이 안되어있는것이다. $sudo systemctl status docker 상태를 확인해 봐라 stop일 것
league-cat.tistory.com
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
확인