【按此回上一頁目錄】
因自身是機器學習初學者,此份作業參考各方資料並加入自己的理解,若有誤還請多指教(建立 Github Issue 來協助我修正),謝謝。
- 1、平均每 6 個月釋出一新版(頻率高),更新支援最長為釋出後 5 年內(較短),新硬體支援度高,容易上手,圖形化介面較友善,佔據儲存空間較多,社群活躍,系統比 CentOS 不穩定,預設安全政策寬鬆。(參考:https://zh.wikipedia.org/wiki/Ubuntu)
- 2、新技術框架(Deep Learning、CUDA 等)、個人用戶首選。
- 3、IBM LinuxOne MainFrame 大型主機系統使用 Ubuntu 作業系統。(參考:http://www-03.ibm.com/systems/tw/linuxone/open-source/ubuntu.html)
- 4、其他要注意的是:Ubuntu 16.04 LTS 起使用 systemd 代替舊的 SysVinit 啟動程式,像 Docker 等軟體在使用 apt-get install 安裝後卻無法順利讀取其設定檔。(參考:http://orchidflower.oschina.io/2017/06/22/Using-DOCKER-OPTS-on-Ubuntu-16-04-LTS/)
- 1、平均每 3 年釋出一新版(頻率低),更新支援最長為釋出後 10 年內(較長),新硬體支援度低,不易上手,圖形化介面較陽春,佔用儲存空間較少,社群較少,系統比 Ubuntu 穩定,預設安全政策嚴謹。(參考:https://zh.wikipedia.org/wiki/CentOS)
- 2、中小企業架站伺服器、IDC 機房作業系統首選。(參考:https://ddnews.me/tech/tlst2g2u.html)
- 因 CentOS 安全政策嚴謹,且 Ubuntu 支援度高,故決定使用第二章節安裝的 CentOS 建置 Docker 軟體貨櫃環境,並使用 Ubuntu Container 容器,來架設 Hadoop 叢集環境。
- 附註:考量 Docker 需要高安全性環境,亦有多人選用 CoreOS Linux 作為 Docker 的作業環境。
- 第二張 NAT 網路卡 未來可供 master Container 對外連入服務使用。
- 在「CentOS-Hadoop-Master-01」 VM 內點選【Edit virtual machine settings】。
02-003、現在要執行終端機(Terminal)。點選左上角【Applications】→【System Tools】→【Terminal】(接下來的操作步驟我們都將在「Terminal」內進行)。
$ sudo yum install -y open-vm-tools open-vm-tools-desktop
- 因為我們要用的 Docker Container 的 hadoop 使用者 UID 為 10000,因為 Docker Container 的特性是,Container 裡的使用者權限會和 CentOS VM 宿主主機同一個 UID 的使用者權限一致。
- 若未來需使用 Ubuntu 建立使用者請用
$ sudo useradd -m -u 10000 -G sudo -s /bin/bash hadoop
指令。 - 【-m】:強制建立使用者家目錄。在這邊家目錄為 /home/ubuntu。
- 【-u】:指定 UID。在這邊為 10000。
- 【-G】:指定次要群組,在這邊為 wheel(CentOS Linux 中可以使用 sudo 指令的群組)。
- 【-s】:指定此使用者使用的使用者介面 Shell。
$ sudo useradd -m -u 10000 -G wheel -s /bin/bash hadoop
$ sudo passwd hadoop
Changing password for user hadoop.
New password: hadoop
BAD PASSWORD: The password is shorter than 8 characters
Retype new password: hadoop
passwd: all authentication tokens updated successfully.
$ sudo sync; sudo sync; sudo sync; sudo sync; sudo sync; sudo sync; sudo sync; sudo reboot;
- 注意:登入後因為此 hadoop 使用者為第一次使用所以會進行第一次設置,可參考第二篇文章設置。操作順序為:語系選擇【English】→【Next】→鍵盤擇【Taiwanese】→【Next】→安全性預設【ON】→【Next】→連結帳號時選略過【Skip】→點選【Start using CentOS Linux】完成。
- 我們可以使用
$ sudo systemctl list-units --type service | grep running
指令來查看系統服務啟動清單。 - 【packagekit】:CentOS 桌面版更新程式。
$ sudo systemctl stop packagekit
$ sudo systemctl disable packagekit
- 【yum】:CentOS 的包裝工具,可使用此來進行更新(update)、安裝套件(install)等動作,與 Ubuntu 的 apt-get 包裝工具類似。
- 【clean all】指令:刪除舊的應用程式版本列表。
$ sudo yum -y autoremove && sudo yum clean all
$ sudo rm -rf /var/cache/yum
$ sudo yum check-update && sudo yum -y update
$ sudo vim /etc/sudoers
…(前略) ## Allows people in group wheel to run all commands %wheel ALL=(ALL) ALL ## Same thing without a password # %wheel ALL=(ALL) NOPASSWD: ALL …(後略)
↑ 第 99 列及 102 列修改成 ↓
…(前略) ## Allows people in group wheel to run all commands #%wheel ALL=(ALL) ALL ## Same thing without a password %wheel ALL=(ALL) NOPASSWD: ALL …(後略)
$ sudo yum install -y openssh wget vim gedit nano net-tools iputils traceroute curl bind-utils sudo man tree python docker
$ sudo yum install -y openssl-devel snappy-devel bzip2-devel
$ sudo vim /etc/ssh/sshd_config
…(上略) # Authentication: #LoginGraceTime 2m #PermitRootLogin yes #StrictModes yes …(中略) #UsePrivilegeSeparation sandbox #PermitUserEnvironment no #Compression delayed #UsePrivilegeSeparation sandbox #PermitUserEnvironment no #Compression delayed #ClientAliveInterval 0 #ClientAliveCountMax 3 #ShowPatchLevel no #UseDNS yes #PidFile /var/run/sshd.pid …(下略)
↑ 第 38 列、110 列及 115 列修改成 ↓
…(上略)
#LoginGraceTime 2m #PermitRootLogin yes PermitRootLogin no #StrictModes yes …(中略) #UsePrivilegeSeparation sandbox #PermitUserEnvironment no #Compression delayed #UsePrivilegeSeparation sandbox #PermitUserEnvironment no PermitUserEnvironment yes #Compression delayed #ClientAliveInterval 0 #ClientAliveCountMax 3 #ShowPatchLevel no #UseDNS yes UseDNS no #PidFile /var/run/sshd.pid …(下略)
$ sudo vim /etc/ssh/ssh_config
…(略) # StrictHostKeyChecking ask …(略)
↑ 第 35 列修改成 ↓
…(略) # StrictHostKeyChecking ask StrictHostKeyChecking no …(略)
$ sudo systemctl enable sshd
$ sudo systemctl restart sshd
- 【--permanen】參數:表示本次設置要永久生效(重開機亦會生效)。
- 【firewall-cmd】:CentOS 防火牆設置指令。
- 【--zone】:選擇要在哪一個網路環境執行防火牆規則,總共有 9 種環境可供選擇,預設為 Public Zone。
- 【--add-service】:要允許連入的服務。在這邊為 SSH,我們可使用
$ sudo firewall-cmd --get-services
指令來查詢可選擇哪些服務。
$ sudo firewall-cmd --permanent --zone=public --add-service=ssh
$ sudo firewall-cmd --permanent --zone=public --list-all
public
target: default
icmp-block-inversion: no
interfaces:
sources:
services: ssh dhcpv6-client
ports:
protocols:
masquerade: no
forward-ports:
source-ports:
icmp-blocks:
rich rules:
- 【groupadd】:增加群組。
- 【-r】:此為系統群組(群組識別編號 GID 小於 1000)。
- 【-g A】:指定 GID 為 A。
$ sudo groupadd -r -g 823 docker
- 【usermod】:修改使用者資訊指令。
- 【-aG A B】:將使用者 B 加入到 A 群組。
$ sudo usermod -aG docker hadoop
$ newgrp docker
$ groups
docker wheel hadoop
$ cat /etc/group | grep 'docker'
dockerroot:x:985:
docker:x:823:hadoop
$ sudo systemctl enable docker
$ sudo systemctl start docker
04-001、為使我們容易監控 CentOS VM 狀態,安裝 Webmin 監控軟體,可參考 Webmin 官網說明。
- 首先要新增 Webmin yum 下載站點。
$ sudo vim /etc/yum.repos.d/webmin.repo
[Webmin] name=Webmin Distribution Neutral #baseurl=http://download.webmin.com/download/yum mirrorlist=http://download.webmin.com/download/yum/mirrorlist enabled=1
$ cd /tmp && wget http://www.webmin.com/jcameron-key.asc
$ sudo rpm --import jcameron-key.asc
$ sudo rm -rf /tmp/jcameron-key.asc
$ sudo yum check-update
$ sudo yum install -y webmin
$ sudo systemctl enable webmin
- 【--add-port】:欲開通的連接埠(0 ~ 65535)及協定(TCP、UDP)。
$ sudo firewall-cmd --permanent --zone=public --add-port=10000/tcp
$ sudo firewall-cmd --permanent --zone=public --list-ports
10000/tcp
- 在這邊將以「192.168.133.137」 IP 作為 CentOS VM 對外 IP。
$ ifconfig ens33
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.133.137 netmask 255.255.255.0 broadcast 192.168.133.255
inet6 fe80::1d83:ea90:3b47:1df7 prefixlen 64 scopeid 0x20<link>
ether 00:0c:29:ff:d3:72 txqueuelen 1000 (Ethernet)
RX packets 300 bytes 21832 (21.3 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 57 bytes 7064 (6.8 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
04-009、此時可在 Windows 內使用瀏覽器查看 https://<VM-IP>:10000
(本處即為「https://192.168.133.137:10000
」)並使用 root:centos 帳密進行登入。
- 此 Ubuntu Docker Image 可作為模版來建立 Ubuntu Container,就像是使用 Ubuntu 光碟片來安裝 Ubuntu。
- 【docker】:執行軟體貨櫃相關指令。
- 【pull】指令:下載指定的 Docker Image。
- 【A:B】參數:下載 B 版本的 A Docker Image,在這邊是下載最新的(Latest)的 Ubuntu Docker 光碟片。
$ sudo docker pull ubuntu:latest
Trying to pull repository docker.io/library/ubuntu ...
latest: Pulling from docker.io/library/ubuntu
660c48dd555d: Pull complete
4c7380416e78: Pull complete
421e436b5f80: Pull complete
e4ce6c3651b3: Pull complete
be588e74bd34: Pull complete
Digest: sha256:7c67a2206d3c04703e5c23518707bdd4916c057562dd51c74b99b2ba26af0f79
$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
docker.io/ubuntu latest 20c44cd7596f 6 days ago 122.8 MB
- 【docker run】:建立新的 Container。
- 【--name】:設定 Container 的別名,此別名並非 Container Host Name(Container 本身不會知道此別名,只有宿主 CentOS 才看得到)。
- 【-it】:分配 pseudo-TTY 綁在 Container 的標準輸入上,讓使用者可與之互動。
- 【-d】=【--detach】:Container 建立後即推到背景執行。
- 【/bin/bash】:讓此 Container 執行 /bub/bash Shell 使用者介面程式。
$ sudo docker run --name="worker" -itd ubuntu:latest /bin/bash
97dcc6a1dd29b7780b00289d05127c4aa2fdf0ae6accf4426307ad3930f84460
- 【docker ps】:查看 Container 的狀態。
- 【-a】:顯示開啟及關閉的所有 Container。
$ sudo docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
97dcc6a1dd29 ubuntu:latest "/bin/bash" 4 minutes ago Up 4 minutes worker
- 【docker attach A】:進入一個正在執行的 Container 容器 A。
- 注意:進入後請再按下【Enter】鍵才能繼續操作。
- 注意:若要離開目前的 Container 容器(而不是關閉它),請按下鍵盤的【Ctrl + P】→【Ctrl + Q】來離開。
- 注意:若使用
root@xxxxxxxxxxxx:/# exit
指令來離開 Container 容器,實際上是將 Container 容器關閉。
$ sudo docker attach worker
root@xxxxxxxxxxxx:/# apt-get update && apt-get upgrade -y && apt-get dist-upgrade -y
root@xxxxxxxxxxxx:/# vim /etc/sudoers
…(前略) # Allow members of group sudo to execute any command %sudo ALL=(ALL:ALL) ALL # See sudoers(5) for more information on "#include" directives: …(後略)
↑ 第 26 列修改成 ↓
…(前略) # Allow members of group sudo to execute any command #%sudo ALL=(ALL:ALL) ALL %sudo ALL=(ALL:ALL) NOPASSWD: ALL # See sudoers(5) for more information on "#include" directives: …(後略)
root@xxxxxxxxxxxx:/# apt-get install -y ssh wget python-software-properties vim gedit nano deborphan net-tools iputils-ping traceroute curl dnsutils locales sudo man tree deborphan scala python python3
root@xxxxxxxxxxxx:/# apt-get install -y libssl-dev libsnappy-dev libbz2-dev
- localepurge 可以在保留需要的區域配置的前提之下刪除其他那些系統中存在的無用的區域配置文件,會騰出不少磁盤空間。
- 安裝後我們先點選【OK】→點選【Yes】→點選【Yes】→最後選【OK】。
- 未來若需重新執行此語系設定,請執行
root@xxxxxxxxxxxx:/# dpkg-reconfigure locales
指令。
root@xxxxxxxxxxxx:/# apt-get install -y localepurge
05-011、為了安裝 Oracle Java 語言,我們需使用 software-properties-common 工具,但使用此工具前要先裝 python-software-properties 套件,故沒有先和上述套件一起安裝。
root@xxxxxxxxxxxx:/# apt-get install -y software-properties-common
05-012、加入目前最新的 Java 版本到 Ubuntu 的 apt-get 倉庫 repository 內。root@xxxxxxxxxxxx:/# add-apt-repository
指令要在安裝 software-properties-common 套件後才可使用。
- 注意:安裝時請按下【Enter】鍵繼續安裝。
root@xxxxxxxxxxxx:/# add-apt-repository ppa:webupd8team/java
- 注意:安裝過程中請按下【OK】→【Yes】。
root@xxxxxxxxxxxx:/# apt-get update && apt-get install -y oracle-java9-installer oracle-java8-installer
- 未來若需使用到 Java 9,可使用
root@xxxxxxxxxxxx:/# sudo apt-get install -y oracle-java9-set-default
指令來設置。
root@xxxxxxxxxxxx:/# apt-get install -y oracle-java8-set-default
root@xxxxxxxxxxxx:/# java -version
java version "1.8.0_151"
Java(TM) SE Runtime Environment (build 1.8.0_151-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)
- 目的:為了避免例如升級至 Java 9 後,所有關於 Java 目錄都要重新設置,所以將 /usr/lib/jvm/java-8-oracle 建立捷徑到 /usr/lib/jvm/java,而當所有的 Java 目錄都指到 /usr/lib/jvm/java 的話,就算升級到 Java 9,也只要重新指向捷徑,不需要更改所有設置。
root@xxxxxxxxxxxx:/# ln -sf "/usr/lib/jvm/java-8-oracle" "/usr/lib/jvm/java"
root@xxxxxxxxxxxx:/# ls -al "/usr/lib/jvm"
total 28
drwxr-xr-x. 1 root root 314 Nov 23 14:47 .
drwxr-xr-x. 1 root root 764 Nov 23 14:45 ..
-rw-r--r--. 1 root root 2600 Oct 27 22:51 .java-1.8.0-openjdk-amd64.jinfo
-rw-r--r--. 1 root root 2643 Nov 23 14:45 .java-8-oracle.jinfo
-rw-r--r--. 1 root root 4953 Nov 23 14:44 .java-9-oracle.jinfo
lrwxrwxrwx. 1 root root 24 Feb 25 2016 default-java -> java-1.8.0-openjdk-amd64
lrwxrwxrwx. 1 root root 26 Nov 23 14:47 java -> /usr/lib/jvm/java-8-oracle
lrwxrwxrwx. 1 root root 20 Oct 27 22:51 java-1.8.0-openjdk-amd64 -> java-8-openjdk-amd64
drwxr-xr-x. 1 root root 26 Nov 23 12:27 java-8-openjdk-amd64
drwxr-xr-x. 1 root root 274 Nov 23 14:45 java-8-oracle
drwxr-xr-x. 1 root root 90 Nov 23 14:44 java-9-oracle
root@xxxxxxxxxxxx:/# ls -al /usr/share | grep 'scala'
drwxr-xr-x. 1 root root 18 Nov 23 12:27 scala-2.11
root@xxxxxxxxxxxx:/# ln -sf "/usr/share/scala-2.11" "/usr/share/scala"
root@xxxxxxxxxxxx:/# ls -al /usr/share | grep 'scala'
lrwxrwxrwx. 1 root root 10 Dec 21 2015 scala -> scala-2.11
drwxr-xr-x. 1 root root 38 Nov 23 14:50 scala-2.11
root@xxxxxxxxxxxx:/# locale-gen zh_TW zh_TW.UTF-8 en_US en_US.UTF-8
root@xxxxxxxxxxxx:/# locale -a
C
C.UTF-8
POSIX
en_US
en_US.iso88591
en_US.utf8
zh_TW
zh_TW.big5
zh_TW.utf8
- 「/home/NewUser/.bashrc」檔為使用者使用 Interactive Shell 時會自動執行的腳本。
- 【if [ A ]; then B fi】:Shell 程式的條件式:若 A 成立就執行 B。
- 【-z "$SSH_TTY"】:判斷 $SSH_TTY 是否為空值。如果不是用 SSH 登入($SSH_TTY 為空)就做以下事情。
- 【$SSH_TTY】:若為 SSH 登入會有值,非 SSH 登入就會為空。
- 【alias ping='ping -c 4'】:往後使用「ping」指令,等同於使用「ping -c 4」指令。
- 【alias dir='ls -alh'】:往後使用「dir」指令,等同於使用「ls -alh」指令。
root@xxxxxxxxxxxx:/# vim /etc/skel/.bashrc
…(前略) alias ping='ping -c 4' alias dir='ls -alh' if [ -z "$SSH_TTY" ]; then export LANG=en_US.UTF-8 export LANGUAGE=en_US export LC_ALL=en_US.UTF-8 else export LC_ALL=zh_TW.UTF-8 fi
root@xxxxxxxxxxxx:/# vim /root/.bashrc
…(前略) alias ping='ping -c 4' alias dir='ls -alh' if [ -z "$SSH_TTY" ]; then export LANG=en_US.UTF-8 export LANGUAGE=en_US export LC_ALL=en_US.UTF-8 else export LC_ALL=zh_TW.UTF-8 fi
- 注意:未來使用此 Container 的宿主,也要創建 UID 10000 的使用者(建議一樣是 hadoop),因為 Container UID 為 10000 使用者權限與宿主 UID 10000 的使用者權限相同。所以上述我們已經在 CentOS VM 宿主中創建了 UID 10000 的 hadoop 使用者。
root@xxxxxxxxxxxx:/# useradd -m -u 10000 -G sudo -s /bin/bash hadoop
root@xxxxxxxxxxxx:/# passwd hadoop
Enter new UNIX password: hadoop
Retype new UNIX password: hadoop
passwd: password updated successfully
root@xxxxxxxxxxxx:/# cat /etc/group | grep hadoop
sudo:x:27:hadoop
hadoop:x:10000:
root@xxxxxxxxxxxx:/# cat /etc/passwd | grep hadoop
hadoop:x:10000:10000::/home/hadoop:/bin/bash
root@xxxxxxxxxxxx:/# mkdir -p /var/run/sshd
05-028、接下來進行 SSH Server 設置,未來我們會將此 VM 做為模板複製成其他 VM,為了達到 SSH 遠端至其他 VM 不需輸入密碼,進行以下設置。首先編輯「/etc/ssh/sshd_config」檔。
root@xxxxxxxxxxxx:/# vim /etc/ssh/sshd_config
…(上略) # Authentication: LoginGraceTime 120 PermitRootLogin prohibit-password StrictModes yes …(中略) UsePAM yes
↑ 修改第 28 列,以及在文件最下方增加內容 ↓
…(上略) # Authentication: LoginGraceTime 120 #PermitRootLogin prohibit-password PermitRootLogin no StrictModes yes …(中略) UsePAM yes PermitUserEnvironment yes UseDNS no
root@xxxxxxxxxxxx:/# vim /etc/ssh/ssh_config
…(前略) # StrictHostKeyChecking ask …(後略)
↑ 第 35 列修改成 ↓
…(前略) # StrictHostKeyChecking ask StrictHostKeyChecking no …(後略)
- 【su】:切換至其他帳戶。
root@xxxxxxxxxxxx:/# su hadoop
- 使用 SSH 遠端時可選擇使用密碼或金鑰登入,當連入者 Client 及 Server 均有成對的金鑰時,即可不需密碼完成連線。
- 注意:這邊並未使用 sudo 權限建立金鑰,故金鑰擁有者為目前使用者(hadoop)。
hadoop@xxxxxxxxxxxx:/$ ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa
hadoop@xxxxxxxxxxxx:/$ cp -pRf ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys
hadoop@xxxxxxxxxxxx:/$ sudo chown -R "$USER":"$USER" ~/.ssh && sudo chmod -R 700 ~/.ssh
hadoop@xxxxxxxxxxxx:/$ ls -al ~/.ssh
total 12
drwx------. 1 hadoop hadoop 62 Nov 24 02:22 .
drwxr-xr-x. 1 hadoop hadoop 128 Nov 24 02:24 ..
-rwx------. 1 hadoop hadoop 401 Nov 24 02:16 authorized_keys
-rwx------. 1 hadoop hadoop 1679 Nov 24 02:16 id_rsa
-rwx------. 1 hadoop hadoop 401 Nov 24 02:16 id_rsa.pub
hadoop@xxxxxxxxxxxx:/$ rm -rf ~/.bash_history
hadoop@xxxxxxxxxxxx:/$ history -c
hadoop@xxxxxxxxxxxx:/$ exit
root@xxxxxxxxxxxx:/# /etc/init.d/ssh start
* Starting OpenBSD Secure Shell server sshd [ OK ]
root@xxxxxxxxxxxx:/# netstat -ano
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State Timer
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN off (0.00/0/0)
tcp6 0 0 :::22 :::* LISTEN off (0.00/0/0)
Active UNIX domain sockets (servers and established)
Proto RefCnt Flags Type State I-Node Path
- 「/etc/bash.bashrc」檔將會在此 Container 被創建時自動執行,且作用範圍會在所有的使用者帳號中生效。
- 【/etc/init.d/ssh start】:當 Container 被建立時($USER 為空)就啟動 SSH 服務讓我們可以連入。
root@xxxxxxxxxxxx:/# vim /etc/bash.bashrc
…(前略) if [ "$USER" == "" ]; then if [ -f /opt/bin/dkc.boot ]; then /opt/bin/dkc.boot fi /etc/init.d/ssh start else if [ -f /opt/bin/dkc.bash ]; then source /opt/bin/dkc.bash fi fi
root@xxxxxxxxxxxx:/# apt-get autoremove -y && apt-get clean && apt-get autoclean
root@xxxxxxxxxxxx:/# rm -rf /home/hadoop/.ssh/environment
root@xxxxxxxxxxxx:/# rm -rf /home/hadoop/.ssh/known_hosts
root@xxxxxxxxxxxx:/# rm -rf /home/hadoop/.bash_history
root@xxxxxxxxxxxx:/# rm -rf /root/.ssh/environment
root@xxxxxxxxxxxx:/# rm -rf /root/.ssh/known_hosts
root@xxxxxxxxxxxx:/# rm -rf /root/.bash_history
root@xxxxxxxxxxxx:/# rm -rf /root/.aptitude
root@xxxxxxxxxxxx:/# rm -rf /tmp/*
- 註:若需將目前暫存的指令紀錄強制寫入 $HOME/.bash_history 而不要等終端機關閉,請執行
root@xxxxxxxxxxxx:/# history -w
指令。
root@xxxxxxxxxxxx:/# history -c
root@xxxxxxxxxxxx:/# exit
- 因為 Docker Container 使用的是 AUFS 檔案系統,特色是 Copy on Write 每次對 Container 作一個動作,就會生成一個新的目錄堆疊,而舊的目錄變成唯讀,好處是非常適合 Docker 環境:一個唯讀 Image 可快速供裝多個 Container,但壞處是當目錄堆疊一多時,效能會很差。
- 我們可以使用
$ sudo docker history A
指令來查看 Docker Image A 的操作歷史(Dockerfile)。 - 【export】:將 Container 輸出成指定的檔案儲存。
$ sudo docker export worker > ~/worker.tar
06-002、再將剛才備份好的壓縮檔來建立 Docker Image(這邊以建立名為 oneleo/worker:17.11.2 的 Docker Image 為例子:oneleo 是 DockerHub 帳號,worker 為 Image 名稱,17.11.2 為版本號,代表 2017 年 11 月第 2 版)。
- 請趁現在為自己在 Docker Hub 網站建立一帳號,並將 Container 設定成自己的帳號名稱。
$ sudo cat ~/worker.tar | docker import - oneleo/worker:17.11.2
$ sudo rm -rf ~/worker.tar
$ sudo docker history oneleo/worker:17.11.2
IMAGE CREATED CREATED BY SIZE COMMENT
d8c45c08b1f9 2 minutes ago 2.407 GB Imported from -
$ sudo docker history ubuntu
IMAGE CREATED CREATED BY SIZE COMMENT
20c44cd7596f 6 days ago /bin/sh -c #(nop) CMD ["/bin/bash"] 0 B
<missing> 6 days ago /bin/sh -c mkdir -p /run/systemd && echo 'doc 7 B
<missing> 6 days ago /bin/sh -c sed -i 's/^#\s*\(deb.*universe\)$/ 2.759 kB
<missing> 6 days ago /bin/sh -c rm -rf /var/lib/apt/lists/* 0 B
<missing> 6 days ago /bin/sh -c set -xe && echo '#!/bin/sh' > /u 745 B
<missing> 6 days ago /bin/sh -c #(nop) ADD file:280a445783f309c90a 122.8 MB
06-006、接下來要使用自己製作好的 Docker Image 供裝成 Container,因為我們有在 Container 編輯「/etc/bash.bashrc」檔,並指定「/opt/bin/dkc.boot」及「/opt/bin/dkc.bash」檔案觸發,所以我們要製作此二檔案,再掛載到 Container 供其使用。
$ sudo mkdir -p /opt/bin
$ sudo vim /opt/bin/dkc.boot
#!/bin/bash touch /tmp/dkc.boot
$ sudo vim /opt/bin/dkc.bash
#!/bin/bash export DKCBASH=OK
$ sudo chown -R "$USER":"$USER" /opt && sudo chmod -R 775 /opt
- 【--cap-add=NET_ADMIN】參數:允許 Container 具有修改自己 IP 的權限。
- 【-v】參數:volume,把操作主機(宿主主機)的 /opt 目錄,掛到(mount)貨櫃主機程式內的 /opt 目錄上,此一行為稱之 Docker 的外掛目錄。
- 【:z】參數:開通 CentOS SELinux 政策不允許 Container 存取空間,大 Z 只允許最後用此參數的 Container,小 z 允許所有使用此參數的 Container。
$ sudo docker run --name="test1" -v /opt:/opt:z --cap-add=NET_ADMIN -itd oneleo/worker:17.11.2 /bin/bash
$ sudo docker run --name="test2" -v /opt:/opt:z --cap-add=NET_ADMIN -itd oneleo/worker:17.11.2 /bin/bash
06-011、為了讓 CentOS 宿主主機可以 SSH 遠端至 oneleo/worker:17.11.2 Container 免密碼,將 Container 相關金鑰複製到 CentOS 宿主主機,並設置適當權限。
- 【docker cp A:B C】:將 Container A 內的 B 檔案複製到宿主的 C 目錄中。
$ mkdir -p "/home/$USER/.ssh"
$ sudo docker cp test1:"/home/$USER/.ssh/id_rsa" "/home/$USER/.ssh"
$ sudo docker cp test1:"/home/$USER/.ssh/id_rsa.pub" "/home/$USER/.ssh"
$ sudo docker cp test1:"/home/$USER/.ssh/authorized_keys" "/home/$USER/.ssh"
$ sudo chown -R "$USER":"$USER" "/home/$USER/.ssh" && sudo chmod -R 700 "/home/$USER/.ssh"
$ ls -al ~/.ssh
total 12
drwx------. 1 hadoop hadoop 62 Nov 24 12:43 .
drwx------. 1 hadoop hadoop 350 Nov 24 12:40 ..
-rwx------. 1 hadoop hadoop 401 Nov 24 10:16 authorized_keys
-rwx------. 1 hadoop hadoop 1679 Nov 24 10:16 id_rsa
-rwx------. 1 hadoop hadoop 401 Nov 24 10:16 id_rsa.pub
- 【docker exec -it A B】:在不進入 Container 狀況下,讓 Container A 執行 B 指令。
$ sudo docker exec -it test1 ifconfig eth0
eth0 Link encap:Ethernet HWaddr 02:42:ac:11:00:02
inet addr:172.17.0.2 Bcast:0.0.0.0 Mask:255.255.0.0
inet6 addr: fe80::42:acff:fe11:2/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:16 errors:0 dropped:0 overruns:0 frame:0
TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:1296 (1.2 KB) TX bytes:648 (648.0 B)
$ sudo docker exec -it test2 ifconfig eth0
eth0 Link encap:Ethernet HWaddr 02:42:ac:11:00:03
inet addr:172.17.0.3 Bcast:0.0.0.0 Mask:255.255.0.0
inet6 addr: fe80::42:acff:fe11:3/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:8 errors:0 dropped:0 overruns:0 frame:0
TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:648 (648.0 B) TX bytes:648 (648.0 B)
$ ssh [email protected]
Warning: Permanently added '172.17.0.2' (ECDSA) to the list of known hosts.
Welcome to Ubuntu 16.04.3 LTS (GNU/Linux 3.10.0-693.el7.x86_64 x86_64)
* Documentation: https://help.ubuntu.com
* Management: https://landscape.canonical.com
* Support: https://ubuntu.com/advantage
The programs included with the Ubuntu system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by
applicable law.
hadoop@xxxxxxxxxxxx:~$
hadoop@xxxxxxxxxxxx:~$ ssh [email protected]
06-016、因為我們有編輯「/etc/bash.bashrc」檔會在 Container 啟動時自動執行,確認我們寫在「/opt/bin/dkc.boot」及「/opt/bin/dkc.bash」的指令有被正確執行。
hadoop@xxxxxxxxxxxx:~$ ls -al /tmp
total 0
drwxrwxrwt. 1 root root 16 11月 24 04:33 .
drwxr-xr-x. 1 root root 152 11月 24 04:33 ..
-rw-r--r--. 1 root root 0 11月 24 04:33 dkc.boot
hadoop@xxxxxxxxxxxx:~$ echo $DKCBASH
OK
hadoop@xxxxxxxxxxxx:~$ exit
hadoop@xxxxxxxxxxxx:~$ exit
- 【docker rm】:刪除 Container。
- 【-f】參數:即使 Container 正在執行,仍強制刪除。
$ sudo docker rm -f test1 test2
$ sudo docker login
Login with your Docker ID to push and pull images from Docker Hub. If you don't have a Docker ID, head over to https://hub.docker.com to create one.
Username: 您的帳號名稱
Password: 您的帳號密碼
Login Succeeded
$ sudo docker push oneleo/worker:17.11.2
The push refers to a repository [docker.io/oneleo/worker]
fdd6df84c736: Pushed
17.11.2: digest: sha256:8c8c3d2f3ca378572dedf1874168799ca199f5d9fb9ffca0ce7368d0adcfab57 size: 530
$ sudo docker logout
Remove login credentials for https://index.docker.io/v1/
$ rm -rf ~/.docker
- 【autoremove】:自動刪除用不到的相依軟體。
- 【autoclean】:自動刪除已安裝軟體的原始安裝檔。
- 【clean】:刪除所有已安裝軟體的原始安裝檔。
$ sudo apt-get autoremove -y && sudo apt-get autoclean && sudo apt-get clean
$ sudo yum -y autoremove && sudo yum clean all
$ sudo rm -rf /var/cache/yum
$ sudo rm -rf /home/hadoop/.ssh/environment
$ sudo rm -rf /home/hadoop/.ssh/known_hosts
$ sudo rm -rf /tmp/*
- [01] 陳松林老師,「Big Data 研究室」,http://bigdatahome.blogspot.tw/
- [02] 楊保華、戴王劍、曹亞侖,「碁峰書局 - Docker入門與實戰」,http://www.books.com.tw/products/0010676115