溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么在centos6.5上安裝docker

發(fā)布時(shí)間:2021-09-08 17:18:41 來(lái)源:億速云 閱讀:191 作者:chen 欄目:云計(jì)算

這篇文章主要介紹“怎么在centos6.5上安裝docker”,在日常操作中,相信很多人在怎么在centos6.5上安裝docker問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”怎么在centos6.5上安裝docker”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

1.       給非root用戶增加sudo權(quán)限

·         切換到root用戶下

·         添加sudo文件的寫權(quán)限,命令是:

       chmod u+w /etc/sudoers

·         編輯sudoers文件

 vi /etc/sudoers
 找到這行 root ALL=(ALL) ALL,

       在他下面添加$youruser ALL=(ALL) ALL
       這里可以在sudoers添加下面四行中任意一條

youuser            ALL=(ALL)                ALL

%youuser           ALL=(ALL)                ALL

youuser            ALL=(ALL)                NOPASSWD: ALL

%youuser           ALL=(ALL)                NOPASSWD: ALL

第一行:允許用戶youuser執(zhí)行sudo命令(需要輸入密碼).

第二行:允許用戶組youuser里面的用戶執(zhí)行sudo命令(需要輸入密碼).

第三行:允許用戶youuser執(zhí)行sudo命令,并且在執(zhí)行的時(shí)候不輸入密碼.

第四行:允許用戶組youuser里面的用戶執(zhí)行sudo命令,并且在執(zhí)行的時(shí)候不輸入密碼.

·         撤銷sudoers文件寫權(quán)限,命令:

       chmod u-w /etc/sudoers

2.         檢查curl是否已安裝

$ which curl

如果未安裝,執(zhí)行下面的命令:

$ sudo apt-get update

$ sudo apt-get install curl

3.         獲取Docker包

$ curl -fsSL https://get.docker.com/ | sh

注意這里,如果沒(méi)有sudo權(quán)限,回報(bào)錯(cuò):

youruser is not in the sudoers file.  This incident will be reported

    我的sudo是非免密碼,所以直接執(zhí)行curl也會(huì)報(bào)錯(cuò),使用sudo curl就沒(méi)問(wèn)題。

4.         檢驗(yàn)docker是否已安裝成功

docker run hello-world

按照官網(wǎng)說(shuō)法,這里就ok了,但是非root用戶還未完,會(huì)出現(xiàn)

FATA[0000] Get http:///var/run/docker.sock/v1.18/containers/json?all=1: dial unix /var/run/docker.sock: no such file or directory. Are you trying to connect to a TLS-enabled daemon without TLS?

這是因?yàn)閐ocker還未啟動(dòng)。

輸入命令service docker status 檢查,顯示:

Docker is stopped

輸入docker –d 命令啟動(dòng)。繼續(xù)遇錯(cuò),這時(shí)會(huì)報(bào)一個(gè)權(quán)限的問(wèn)題。

輸入sudo docker –d 或者將youruser加入docker用戶組

        youruser加入docker用戶組

# 添加docker用戶組
$ sudo groupadd docker
# 把自己加到docker用戶組中
$ sudo gpasswd -a myusername docker
# 重啟docker后臺(tái)服務(wù)
$ sudo service docker restart
# 注銷,然后再登陸
$ exit

    還沒(méi)完,這時(shí)會(huì)提示: docker: relocation error

什么意思呢,docker的依賴庫(kù)版本太低。

執(zhí)行:yum upgrade device-mapper-libs

之后輸入sudo docker –d啟動(dòng)成功。

打開另外一個(gè)命令窗口,輸入sudo docker run hello-world

第一次執(zhí)行回報(bào):

nable to find image 'hello-world:latest' locally

latest: Pulling from hello-world

別急,等等,程序會(huì)自動(dòng)下載,下載完就ok了。

到此,關(guān)于“怎么在centos6.5上安裝docker”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI