-
[Docker] 에러 해결법 (ubuntu) : Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?Error Handling 2022. 11. 2. 00:03반응형
발생
docker 설치 후 아래 명령어를 실행시키려 할때 아래 에러가 발생
$ sudo docker run hello-world docker: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?.
원인
docker 가 실행되지 않았다.
해결법
아래 명령어로 docker 실행 확인 후 (현재 Docker 가 실행 되지않는 상태)
$ service docker status * Docker is not running
docker 를 실행시킨다.$ sudo service docker start * Starting Docker: docker [ OK ]
이때 아래와 같은 에러가 발생한다면 앞에 sudo 를 붙여 실행하였는지 확인!* Docker must be run as root
아래 명령어로 docker 실행 확인$ service docker status * Docker is running
반응형'Error Handling' 카테고리의 다른 글
React error 해결법: TS2305: Module '"react-router-dom"' has no exported member 'Switch'. (0) 2023.03.19 Mac zsh 에 brew 적용안되는 에러 해결법: zsh: command not found: brew (0) 2023.01.12 python error 해결법: TypeError: 'module' object is not callable (0) 2022.03.01 python error 해결법: flask response 한글 깨짐 현상 (0) 2022.03.01 Error 해결법 : HTTP DELETE Method 에 body 추가 할 때 500 error (0) 2022.02.22