歡迎訪問我的GitHub
https://github.com/zq2599/blog_demos
內容:所有原創文章分類彙總及配套原始碼,涉及Java、Docker、Kubernetes、DevOPS等;
環境資訊
- 作業系統:Ubuntu 20.04 LTS 桌面版
- Docker:19.03.10
現狀
- 當前賬號是willzhao,直接執行docker xxx命令會報以下錯誤:
willzhao@ideapad:~$ docker images
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.40/images/json: dial unix /var/run/docker.sock: connect: permission denied
- 執行sudo docker xxx命令,會提示輸入當前賬號密碼,然後可以成功:
willzhao@ideapad:~$ sudo docker images
[sudo] willzhao 的密碼:
REPOSITORY TAG IMAGE ID CREATED SIZE
bolingcavalry/probedemo 0.0.1 803f83e12d88 3 hours ago 508MB
hello-world latest bf756fb1ae65 5 months ago 13.3kB
openjdk 8u212-jdk-stretch 03b20c1fa768 11 months ago 488MB
- 每次執行docker命令都要輸入密碼不方便,尤其是在shell指令碼中就更麻煩了,一起來解決這個問題;
設定
- 建立名為docker的組,如果之前已經有該組就會報錯,可以忽略這個錯誤:
sudo groupadd docker
- 將當前使用者加入組docker:
sudo gpasswd -a ${USER} docker
- 重啟docker服務(生產環境請慎用):
sudo systemctl restart docker
- 新增訪問和執行許可權:
sudo chmod a+rw /var/run/docker.sock
- 操作完畢,驗證一下,現在可以不用帶sudo了:
willzhao@ideapad:~$ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
bolingcavalry/probedemo 0.0.1 803f83e12d88 4 hours ago 508MB
hello-world latest bf756fb1ae65 5 months ago 13.3kB
openjdk 8u212-jdk-stretch 03b20c1fa768 11 months ago 488MB
你不孤單,欣宸原創一路相伴
歡迎關注公眾號:程式設計師欣宸
微信搜尋「程式設計師欣宸」,我是欣宸,期待與您一同暢遊Java世界...
https://github.com/zq2599/blog_demos