安裝指定版本的docker服務

来源:https://www.cnblogs.com/zhanglianghhh/archive/2018/11/01/9891293.html
-Advertisement-
Play Games

參考博客:Docker CE 鏡像源站 參考博客:docker啟動異常driver not supported 1. 說明 之前部署docker服務的時候都是安裝最新的docker版本,並使用docker swarm部署大數據組件。 但是在近期的一次部署發現 docker 18.06.1 版本,在使 ...


 

參考博客:Docker CE 鏡像源站

參考博客:docker啟動異常driver not supported

 

 

1. 說明

       之前部署docker服務的時候都是安裝最新的docker版本,並使用docker swarm部署大數據組件。

       但是在近期的一次部署發現 docker 18.06.1 版本,在使用docker swarm部署大數據組件的時候namenode存儲的datanode信息不正確。原因是 18.06.1 版本中的docker swarm 存在一個LB網路,造成了該問題。

       這個問題對於Hadoop本身是沒有任何問題的,但是當我們啟動hbase的時候卻有問題了。通過日誌發現hbase找不到datanode的節點信息,因為hbase得到的是LB的IP而不是datanode本身的IP,最終導致hbase啟動失敗。

       最後解決的方案就是docker版本回退到 17.09.0 版本,該版本不存在LB網路。Hadoop的namenode中存儲的datanode信息是正確的。

 1 [root@mini03 docker-swarm]# docker -v
 2 Docker version 18.06.1-ce, build e68fc7a
 3 [root@mini03 docker-swarm]# docker network ls
 4 NETWORK ID          NAME                DRIVER              SCOPE
 5 f28f7ab2d811        bridge              bridge              local
 6 51c95dea1e5c        docker_gwbridge     bridge              local
 7 7a7e31f4bce8        host                host                local
 8 3cxch31bl38k        ingress             overlay             swarm
 9 5ea08e9a282f        none                null                local
10 pwk7oy2h3gnp        zhang               overlay             swarm  # 自己創建的網路
11 [root@mini03 docker-swarm]# docker network inspect zhang 
12 ………………
13         "Containers": {
14             "a9e2e20c89bb6fbc2984a19c4c8e9f9500f3360f2b0434819fc31a143cbc7fc9": {
15                 "Name": "visualizer_visualizer.1.0lgaqosyogoy0edkqdakeycz4",
16                 "EndpointID": "2cae08f3a1a63eadff6fee675e249ce19956dcc1d871329c90056a1829abc1d1",
17                 "MacAddress": "02:42:0a:00:00:04",
18                 "IPv4Address": "10.0.0.4/24",
19                 "IPv6Address": ""
20             },
21             "lb-zhang": {
22                 "Name": "zhang-endpoint",
23                 "EndpointID": "44ed04b5768dd4ae9edf2e63bded8d5ab5af7cb43d49a4d0d4fbd999abfd5373",
24                 "MacAddress": "02:42:0a:00:00:02",
25                 "IPv4Address": "10.0.0.2/24",
26                 "IPv6Address": ""
27             }
28         },
29 ………………

 

 

 

2. docker安裝指定版本

 1 # 安裝必要的一些系統工具
 2 [root@mini02 tools]# yum install -y yum-utils device-mapper-persistent-data lvm2 
 3 # 添加軟體源信息
 4 [root@mini02 tools]# yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 
 5 # 查看可安裝的版本信息
 6 [root@mini02 tools]# yum makecache fast 
 7 [root@mini02 tools]# yum list docker-ce.x86_64 --showduplicates | sort -r   
 8 * updates: mirrors.aliyun.com
 9 Loading mirror speeds from cached hostfile
10 Loaded plugins: fastestmirror
11  * extras: mirrors.aliyun.com
12  * epel: mirrors.aliyun.com
13 docker-ce.x86_64            18.06.1.ce-3.el7                    docker-ce-stable
14 docker-ce.x86_64            18.06.0.ce-3.el7                    docker-ce-stable
15 docker-ce.x86_64            18.03.1.ce-1.el7.centos             docker-ce-stable
16 docker-ce.x86_64            18.03.0.ce-1.el7.centos             docker-ce-stable
17 docker-ce.x86_64            17.12.1.ce-1.el7.centos             docker-ce-stable
18 docker-ce.x86_64            17.12.0.ce-1.el7.centos             docker-ce-stable
19 docker-ce.x86_64            17.09.1.ce-1.el7.centos             docker-ce-stable
20 docker-ce.x86_64            17.09.0.ce-1.el7.centos             docker-ce-stable
21 docker-ce.x86_64            17.06.2.ce-1.el7.centos             docker-ce-stable
22 docker-ce.x86_64            17.06.1.ce-1.el7.centos             docker-ce-stable
23 docker-ce.x86_64            17.06.0.ce-1.el7.centos             docker-ce-stable
24 docker-ce.x86_64            17.03.3.ce-1.el7                    docker-ce-stable
25 docker-ce.x86_64            17.03.2.ce-1.el7.centos             docker-ce-stable
26 docker-ce.x86_64            17.03.1.ce-1.el7.centos             docker-ce-stable
27 docker-ce.x86_64            17.03.0.ce-1.el7.centos             docker-ce-stable
28 # 安裝指定版本的docker服務
29 [root@mini02 tools]# yum -y install docker-ce-17.09.0.ce-1.el7.centos   
30 # 版本信息查看
31 [root@mini02 tools]# docker -v
32 Docker version 17.09.0-ce, build afdb6d4

 

 

3. 加入開機自啟動

1 [root@mini02 tools]# systemctl status docker
2 ● docker.service - Docker Application Container Engine
3    Loaded: loaded (/usr/lib/systemd/system/docker.service; disabled; vendor preset: disabled)
4    Active: inactive (dead)
5      Docs: https://docs.docker.com
6 ………………
7 [root@mini02 tools]# systemctl enable docker.service  # 加入開機自啟動 
8 Created symlink from /etc/systemd/system/multi-user.target.wants/docker.service to /usr/lib/systemd/system/docker.service.

 

 

4. 問題解決

 1 [root@mini02 tools]# systemctl start docker
 2 Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details.
 3 [root@mini02 tools]# journalctl -xe  # 查詢具體信息
 4 -- Defined-By: systemd
 5 -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
 6 -- 
 7 -- Unit docker.service has begun starting up.
 8 Nov 01 17:40:55 mini02 dockerd[2493]: time="2018-11-01T17:40:55.181209947+08:00" level=info msg="libcontainerd: new containerd process, pid: 2501"
 9 Nov 01 17:40:56 mini02 dockerd[2493]: time="2018-11-01T17:40:56.187023899+08:00" level=error msg="[graphdriver] prior storage driver overlay2 failed: driver not supported"
10 Nov 01 17:40:56 mini02 dockerd[2493]: Error starting daemon: error initializing graphdriver: driver not supported
11 Nov 01 17:40:56 mini02 systemd[1]: docker.service: main process exited, code=exited, status=1/FAILURE
12 Nov 01 17:40:56 mini02 systemd[1]: Failed to start Docker Application Container Engine.
13 -- Subject: Unit docker.service has failed
14 -- Defined-By: systemd
15 -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
16 ………………
17 # 具體信息如下截圖,解決方法如下,之後就可以正常起docker服務了
18 [root@mini02 tools]# mv /var/lib/docker /var/lib/docker.old

 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 我本人對於委托最多的使用就是子線程調用主線程的控制項的使用。可能使用winform或者wpf的人接觸的多一點。 這裡最主要還是給大家看看委托的案例吧 delegate void showMsg(string Msg);showMsg s;第一種委托的方法s+=func;s("aaa"); 第二種委托方 ...
  • 最近抽空把自己幾年來收集、研發的工具,做成了一個線上工具平臺:https://www.atool8.com 目前主要包含:一些線上的開發工具,輔助互聯網開發人員的一些常用工具。像顏色獲取、json對象轉換、js壓縮、線上html、css、js編輯器、加密解密等等;還有一些便民工具,類似陽曆陰曆轉換、 ...
  • 1. 去官網https://dev.mysql.com/downloads/mysql/5.6.html下載mysql壓縮包,選第一個,最大最全的 2. 通過FTP工具比如FileZila存放到目標地址 /home/project/download 3. 解壓下載的壓縮包 tar -xvf MySQ ...
  • scp命令是什麼 scp是 secure copy的縮寫, scp是linux系統下基於ssh登陸進行安全的遠程文件拷貝命令。 scp命令用法 把本地文件複製到遠端主機 user@xxx:file 用冒號分隔文件 把本地文件夾複製到遠端主機 r表示遞歸 把遠端文件複製到本地 指定埠 ...
  • 虛擬機,linux,網路設置,Destination unreachable(Host administratively prohibited ...
  • 設置防火牆iptables開放3306介面 在/etc/sysconfig下麵有個iptables文件,在控制台輸入命令 iptables -I INPUT -p tcp --dport 3306 -j ACCEPT 然後進行保存:service iptables save 更新防火牆規則:serv ...
  • 機緣巧合下,在快要畢業時找到了一份網路工程師的工作,對於學習通信工程的我來說,也不算是跨專業就業吧。在入職之前也瞭解了一下網路工程師的學習路徑,網路工程師是從事電腦信息系統的設計、建設、運行和維護工作,需掌握網路技術的理論知識和操作技能。然後我就開始了這方面的學習,比如網路的設計、CCNA等。 工 ...
  • 在某些應用場合我們可能需要通過一個設備通過WIFI將圖像傳到其它的機器進行顯示或者圖形分析,那怎麼可以低成本地實現呢?其實很簡單,我們只需要一塊 Raspberry Zero W 和一個RPI 攝像頭就行了,兩個加起來成本也只不過150左右。 這個組合不單單隻是實現一個圖傳,最重要的是Raspber ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...