Solution: Kill all .vscode related processes in the system (or the remote server if remote-ssh is used) Knowledge point expansion: Docker plugin in vscode cannot connect Error: Failed to connect. Is Docker running Error: connect EACCES /var/run/docker.sock Cause AnalysisThe reason is that docker uses unix socket for communication, but the unix socket belongs to the root user. However, ordinary users need to use sudo to enable root permissions, but ordinary operations do not have root permissions. SolutionLog in as root user, but security is not guaranteed Add ordinary users to the docker group sudo groupadd docker #Add docker user group sudo gpasswd -a $USER docker #Add the current user to the docker user group newgrp docker #Update the docker user group After adding, log in to vscode again, and the docker plugin will run normally after the user reconnects. test You can run the docker ps command. If there is normal output, it is normal. The above is the details of the docker.socket permission issue of the vscode docker plugin. For more information about docker socket permissions, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Do you know how to use Vue to take screenshots of web pages?
>>: BUG of odd width and height in IE6
We are all familiar with the MySQL count() functi...
Preface Let me share with you how I deployed a Sp...
1. dhtmlxTree dHTMLxTree is a feature-rich Tree M...
Install the required environment 1. gcc installat...
Solution: Add the following code in <head>: ...
Table of contents Preface XA Protocol How to impl...
Table of contents 1. Troubleshooting and locating...
This article shares the specific code of jQuery t...
The /partition utilization of a server in IDC is ...
Table of contents Container Hierarchy The process...
1. Environment and preparation 1. Ubuntu 14.04 2....
Today's article mainly introduces the reload ...
The pitfalls of MySQL read-write separation The m...
1. What is SQL injection? Sql injection is an att...
Keepalive is often used for caching in Vue projec...