gpt4 book ai didi

linux - 安装过程中 Docker 权限被拒绝

转载 作者:行者123 更新时间:2023-12-04 07:18:49 25 4
gpt4 key购买 nike

我第一次尝试安装和使用 docker。我已遵循 this 答案中提供的指导方针问题:

sudo groupadd docker
此时返回(如预期的那样):
groupadd: group 'docker' already exists
然后我尝试将用户添加到组中:
sudo usermod -aG docker $wb_s2s
只返回
Options:
-b, --badnames allow bad names
-c, --comment COMMENT new value of the GECOS field
-d, --home HOME_DIR new home directory for the user account
-e, --expiredate EXPIRE_DATE set account expiration date to EXPIRE_DATE
-f, --inactive INACTIVE set password inactive after expiration
to INACTIVE
-g, --gid GROUP force use GROUP as new primary group
...
然后我尝试注销并重新锁定和/或重新启动计算机/docker(我已经尝试了一切)。但是当我运行时:
docker run hello-world
我收到一个错误:
docker: Got permission denied while trying to connect to the Docker daemon socket at ... connect: permission denied. See 'docker run --help'.
谁能告诉我哪里出错了?

最佳答案

当您将用户添加到组时,文档的字面意思是 $USER引用您的用户wb_s2s (这是在你的 shell 环境中出现的一个变量,用于这样的目的)
添加 $将使其成为 shell 解释为空字符串的变量

% echo $USER
ti7
% echo $ti7

% echo $whatever

您可以使用 $USER变量,或者只是删除 $从您尝试将用户添加到组中
-sudo usermod -aG docker $wb_s2s
+sudo usermod -aG docker wb_s2s

关于linux - 安装过程中 Docker 权限被拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68628732/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com