• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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