• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

Issue Docker permission denied

  • Thread starter Deleted member 209767
  • Start date
D

Deleted member 209767

Guest
Server operating system version
AlmaLinux
Plesk version and microupdate number
last
I installed Docker following the instructions here:
How to Install Docker on AlmaLinux 9 Step-by-Step

Then I installed the Plesk Extension, but when I try to open it in Plesk I always get this error:
Error: Permission denied

What did I do wrong?
 
When you installed the Docker extension in Plesk, it would had installed Docker for you with all the permissions. Because you didn't you're missing the permission. The permission is that you would need psaadm in the docker group. So in your SSH session do the following:

Bash:
sudo usermod -aG docker psaadm

That will add the psadm account to the docker group and should resolve the error.
 
Thanks for the reply, after running the command I was able to access the Docker section in Plesk once, then I tried to run my Mastodon container, and now the same error is back and I can't access the Docker section anymore
 
Would it be an option to remove your Docker installation completely and then install Docker through the Plesk installer instead?
 
Here's a solution, open your console and type:

Bash:
plesk bin extension --uninstall docker
sudo dnf remove -y podman buidah
sudo dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo
sudo dnf install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin
sudo systemctl start docker
sudo systemctl enable docker
sudo usermod -aG docker psaadm
plesk bin extension --install docker
 
Back
Top