其他分享
首页 > 其他分享> > 在tmux中使用docker报错[Error:Got permission denied while trying to connect to the Docker]

在tmux中使用docker报错[Error:Got permission denied while trying to connect to the Docker]

作者:互联网

根据官方文档:
        tmux keeps all its state in a single main process, called the tmux server. This runs in the background and manages all the programs running inside tmux and keeps track of their output.
        tmux是client-server架构,后台有一个tmux server进程管理所有程序的运行状态。

如果遇到这种报错:

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.37/containers/json: dial unix /var/run/docker.sock: connect: permission denied

解决方案很简单。

pkill -f tmux
docker ps

标签:permission,sock,tmux,报错,connect,denied,docker
来源: https://blog.csdn.net/weixin_51768320/article/details/122752892