빨간색 에러들

[Docker] VS Code Error: connect EACCES /var/run/docker.sock

vhxpffltm 2021. 9. 8. 21:37

vscode에 있는 market place의 Docker를 사용하면 

 

편집기로 편리하게 docker의 상태를 관리하고 사용할수 있다.

 

Ububtu에서도 vscode를 설치하여 사용할 수 있다.

 

그런데 간혹 vscode의 docker 창에서 이같은 메세지를 확인할 수 있다.

 

https://github.com/microsoft/vscode-docker/issues/1582

 

Failed to connect. Is Docker installed and running? · Issue #1582 · microsoft/vscode-docker

I am having trouble connecting to the Docker viewer on the left hand side of the screen. When I remote SSH into my linux Ubuntu 18.04 machine, I get the following errors in the Docker viewer: Faile...

github.com

 

위 이슈와 비슷하게 connect 에러가 발생하며 현재 진행중인 docker의 상태를 확인하지 못하는 경우가 있는데 

 

이는 아래의 링크로 해결할 수 있다.

 

https://www.davidhayden.me/blog/fix-docker-vs-code-error-connect-eacces-var-run-docker-sock

 

먼저 docker 그룹을 만드는 것인데 보통 docker 그룹이 만들어져 있을 것이다.

 

만들어진 그룹에 사용자를 추가하면 된다.

 

그리고 가장 중요한 재부팅을 진행하면 vscode에서 docker 확장 기능을 자유자재로 사용할 수 있다.

 

 

1
2
sudo groupadd docker
sudo usermod -aG docker $USER
cs