Permission denied when running Docker after installing it as a Snap

75,649

Solution 1

This is from the GitHub page, did you try these exact steps:

If you are using Ubuntu Core 16,

Connect the docker:home plug as it's not auto-connected by default:

$ sudo snap connect docker:home

If you are using an alternative snap-compatible Linux distribution ("classic" in snap lingo), and would like to run docker as a normal user:

Create and join the docker group.

$ sudo addgroup --system docker
$ sudo adduser $USER docker
$ newgrp docker

You will also need to disable and re-enable the docker snap if you added the group while it was running.

$ sudo snap disable docker
$ sudo snap enable docker

From Docker snap github

Solution 2

The error message tells you that your current user can’t access the docker engine, because you’re lacking permissions to access the unix socket to communicate with the engine.

Temporary solution

Use the sudo command to execute the commands with elevated permissions every time.

Permanent (suggested) solution

Add the current user to the docker group. This can be achieved by typing

sudo usermod -a -G docker $USER

You have to log out and log in again for the group membership to take effect.

Source: techoverflow.net

Solution 3

I assume, your username is already in docker group. To check this, issue below command.

id -nG

If not you need to add your user into the docker group by below command.

sudo groupadd docker
sudo usermod -aG docker $USER

When you execute the command, sudo systemctl start docker, it creates a docker process. That docker process contains dockerd daemon thread. The command also creates default docker.sock Unix socket. The docker.sock socket is continuously listened by dockerd daemon thread. This makes you can do kernel-level IPC with docker.pid process. To be able to use this docker socket, you need to have proper permission from the process level (docker.pid) and file level (docker.sock). So, executing below two commands should solve your issue. sudo chmod a+rwx /var/run/docker.sock # You can provide just execute permission sudo chmod a+rwx /var/run/docker.pid

Solution 4

sudo setfacl -m user:your_user_name:rw /var/run/docker.sock

doesn't require a restart and is more secure

Solution 5

You should add the user to the Docker group (see the official docs).

You can add sudo in front of the command or you can add the user in the docker group by using this command:

sudo usermod -aG docker <USER>

Log out and log back in so that your group membership is re-evaluated.

Share:
75,649
Vincent
Author by

Vincent

Updated on September 18, 2022

Comments

  • Vincent
    Vincent almost 2 years

    I've installed Docker through the Software store, which indicated that it was a Snap package. Which is fine by me, I guess, but unfortunately, every Docker command I've tried doesn't work:

    $ docker info
    Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get http://%2Fvar%2Frun%2Fdocker.sock/v1.30/info: dial unix /var/run/docker.sock: connect: permission denied
    

    Any idea how to fix this?

    Edit: I've worked around this for now by installing Docker from Docker's own repositories, which might work for people browsing this question in the future as well. I'm leaving the question open for those who want to be able to run it from the Snap, though.

    • Santosh Patel
      Santosh Patel over 4 years
      Installed docker from docker official repos. Docker was already running when I added my user to docker group, id -nG did not show docker and any docker command resulted in a permission denied error. Logging out and back in did not work because docker system process keeps running. Rebooting system or restarting docker showed user as part of docker group and allowed executing docker commands. NOTE: 0 rep, can't add comment.
  • Vincent
    Vincent almost 7 years
    Your Google-fu is better than mine, apparently. Unfortunately, this doesn't work. First of all, the docker group did not exist. I then first ran sudo addgroup docker and then reran your command, then logged out and in again. Unfortunately, the error shown in the question persists...
  • ADDB
    ADDB almost 7 years
    @Vincent you didn't forget group changes don't take place immediately, did you? Try newgrp docker or logging out and in.
  • Vincent
    Vincent almost 7 years
    Nope, sorry, forgot to mention that - I updated my comment while you responded :) Running groups vincent gives: vincent adm cdrom sudo dip plugdev lpadmin sambashare docker
  • ADDB
    ADDB almost 7 years
    @Vincent just for reference, your docker daemon is started, right? Try sudo /etc/init.d/docker status or sudo service docker status to test this.
  • Vincent
    Vincent almost 7 years
    Hmm, I don't think those work due to it being a Snap: paste.ubuntu.com/25219172 That said, ps cax | grep dockerd does give 31034 ? Ssl 0:05 dockerd.
  • ADDB
    ADDB almost 7 years
    @Vincent it's dockerd for the daemon, my bad.
  • Vincent
    Vincent almost 7 years
  • Chai T. Rex
    Chai T. Rex over 6 years
    Since that content at that link can disappear, please add the relevant details here.
  • Vincent
    Vincent over 6 years
    No need, the other answer already mentioned adding the user to the group - it didn't help. (Also, no reason why that would help for the Snap install but not for the regular install.)
  • Vincent
    Vincent over 6 years
    I hadn't seen that page, so thanks for the link. That said, since I'm not using Ubuntu Core, I'd have to follow the addgroup instructions, which I think is about what I did, as per the other answers. Unfortunately I'd prefer not to touch the currently working system anymore, but I'd love to hear it if someone else tries this and does manages to get it to work.
  • Manish Kumar
    Manish Kumar about 6 years
    disabling/enabling docker snap did the trick for me, thanks
  • Sabbir
    Sabbir almost 6 years
    Only this working for ubuntu 18.04. Thanks a lot Uddhav Gautam
  • Nick Breen
    Nick Breen about 5 years
    This applies to Ubuntu (Desktop) 19.04 too.
  • Jeroen
    Jeroen over 2 years
    Worked for me! Simply restarting the Docker engine was not enough. I had to disable and then enable it exactly as shown in the answer.