마이크로서비스와 용기 배우기 10 - 용기 맞추기 - Docker 설치
약술하다
전정 회고
앞에서 우리는 과학 인터넷에 사용할 프록시 서버를 준비했다.그 다음에 우리는 용기의 설치와 설정을 소개하기 위해 더욱 전개할 것이다.
환경 준비
호스트 준비
용기가 필요한 서버를 준비하세요. 예를 들어 Kubernetes 집단의 모든 서버, Harbor의 호스트 등입니다.예:
Node Type
CPU
MEM
Log Disk
Docker Disk
Master
8Core
16GB
40GB
100GB
minion1
8Core
16GB
40GB
100GB
minion2
8Core
16GB
40GB
100GB
minion3
8Core
16GB
40GB
100GB
minion4
8Core
16GB
40GB
100GB
minion5
8Core
16GB
40GB
100GB
minion6
8Core
16GB
40GB
100GB
다음을 수행합니다.
호스트 준비
용기가 필요한 서버를 준비하세요. 예를 들어 Kubernetes 집단의 모든 서버, Harbor의 호스트 등입니다.예:
Node Type
CPU
MEM
Log Disk
Docker Disk
Master
8Core
16GB
40GB
100GB
minion1
8Core
16GB
40GB
100GB
minion2
8Core
16GB
40GB
100GB
minion3
8Core
16GB
40GB
100GB
minion4
8Core
16GB
40GB
100GB
minion5
8Core
16GB
40GB
100GB
minion6
8Core
16GB
40GB
100GB
다음을 수행합니다.
운영 체제 요구 사항
후속 Docker 컨테이너의 파일 시스템을 고려하여 Docker 홈페이지에서 추천하는 Overlay2를 사용하며, 이 버전의 CentOS 버전에 대해서도 요구할 것입니다.
CentOS7 버전 업그레이드
root 사용자로 전환하여 다음을 수행합니다.
[root@localhost ~]# yum update
CentOS7 코어 업그레이드
본인의 또 다른 문장을 참고하여 이곳에서 더 이상 누설하지 마십시오.https://www.jianshu.com/p/3e3bc1f51332.
Docker 파일 시스템 준비
호스트에 디스크 마운트
디스크에 파티션 생성 및 포맷
호스트에서 새 마운트 디스크를 보려면 로그인하십시오.
[root@localhost ~]# fdisk -l
Disk /dev/vda: 42.9 GB, 42949672960 bytes, 83886080 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x0008e9bc
Device Boot Start End Blocks Id System
/dev/vda1 * 2048 2099199 1048576 83 Linux
/dev/vda2 2099200 83886079 40893440 83 Linux
Disk /dev/vdb: 100 GB, 161061273600 bytes, 314572800 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0xbe36259a
Device Boot Start End Blocks Id System
[root@localhost ~]#
디스크 파티셔닝
fdisk를 통해 디스크를 구분하고 메뉴에 들어가면 각각 n->p->기본->기본값을 선택합니다.마지막으로 wq를 입력하여 저장합니다. 만약에 wq를 저장할 때 디스크가busy 상태에 있음을 알립니다. 다시 시작해야 합니다. 다시 시작해야 합니다. 만약 알람이 없으면 다음 절차를 계속할 수 있습니다.
[root@localhost ~]# fdisk /dev/vdb
Welcome to fdisk (util-linux 2.23.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help): n
Partition type:
p primary (3 primary, 0 extended, 1 free)
e extended
Select (default p): p
....
디스크 포맷
우리는 xfs 형식으로 디스크를 포맷합니다. 주의해야 할 것은 운영체제 핵을 업그레이드해야 한다는 것입니다.
포맷:
참고: 파티션을 만들 때 만든 Device Boot을 교체하는 데 주의하십시오.이 예제:/dev/vdb3
[root@localhost ~]# mkfs.xfs -n ftype=1 /dev/vdb3
포맷 프로세스 중이거나 재설치하는 동안 디스크가 사용되고 있다는 메시지가 표시되면 포맷을 강제할 수 있습니다.
디스크 마운트를 대상 경로로 이동
우리는 Docker 기본 경로를 사용하여 목표 경로를 만들 것입니다:/var/lib/docker
[root@localhost ~]# mount /dev/vdb3 /var/lib/docker
[root@localhost ~]# df -hT
Filesystem Type Size Used Avail Use% Mounted on
devtmpfs devtmpfs 7.9G 0 7.9G 0% /dev
tmpfs tmpfs 7.9G 0 7.9G 0% /dev/shm
tmpfs tmpfs 7.9G 9.2M 7.9G 1% /run
tmpfs tmpfs 7.9G 0 7.9G 0% /sys/fs/cgroup
/dev/vda2 ext4 39G 2.8G 34G 8% /
/dev/vdb2 ext4 40G 57M 38G 1% /var/log
/dev/vdb3 xfs 100G 33M 100G 1% /var/lib/docker
/dev/vda1 ext4 976M 249M 660M 28% /boot
보기에 의하면/var/lib/docker가 xfs 형식을 사용하여 성공적으로 마운트된 것을 발견했습니다.
호스트 추가 자동 마운트 시작
[root@localhost ~]# vi /etc/fstab
......
/dev/vdb3 /var/lib/docker xfs defaults 0 0
......
Overlay2 파일 시스템에 대한 시스템 지원 추가
[root@localhost ~]# yum install yum-plugin-ovl -y
기존 Docker 제거
이 단계는 반드시 필요하지 않습니다. 새 서버라면 무시하십시오.[root@localhost ~]# yum remove docker \
docker-client \
docker-client-latest \
docker-common \
docker-latest \
docker-latest-logrotate \
docker-logrotate \
docker-engine
Docker 설치
Docker Engine의 커뮤니티 버전을 사용합니다.
Docker Yum 웨어하우스 설치
[root@localhost ~]# yum install -y yum-utils \
device-mapper-persistent-data \
lvm2
Docker의 안정적인 버전 라이브러리를 설치합니다.[root@localhost ~]# yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
홈페이지에 따르면 Nightly 버전이 필요하면 홈페이지를 참고하여 해당 Yum 창고를 설치하세요.
Docker 설치
[root@localhost ~]# yum install docker-ce docker-ce-cli containerd.io
Docker 구성
시작 설정
[root@localhost ~]# systemctl enable docker
프록시 서버 구성
프록시 서버의 설정은 과학적인 인터넷이 필요한 거울, 예를 들어 쿠버넷의 거울을 다운로드하는 데 사용됩니다.현재 사용자의 루트 경로에서 Docker 구성 파일을 생성합니다.# mkdir -p /etc/systemd/system/docker.service.d/
# vi /etc/systemd/system/docker.service.d/http-proxy.conf
[Service]
Environment="HTTP_PROXY=http://xxx.xxx.xxx.xxx:8118/" "NO_PROXY=localhost,127.0.0.1,xxx.xxx.xxx.xxx,hub.twinkle.net,*.docker.io"
#
# vi /etc/systemd/system/docker.service.d/https-proxy.conf
[Service]
Environment="HTTP_PROXY=http://192.168.0.127:8118/" "NO_PROXY=localhost,127.0.0.1,xxx.xxx.xxx.xxx,hub.twinkle.net,*.docker.io"
Docker 시작
Docker를 시작합니다.[root@localhost ~]# systemctl start docker
[root@localhost ~]# docker info
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 0
Server Version: 18.09.0
Storage Driver: overlay2
Backing Filesystem: xfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: systemd
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: c4446665cb9c30056f4998ed953e6d4ff22c7c39
runc version: 4fc53a81fb7c994640722ac585fa9ca548971871
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.20.0-1.el7.elrepo.x86_64
Operating System: CentOS Linux 7 (Core)
OSType: linux
Architecture: x86_64
CPUs: 24
Total Memory: 62.8GiB
Name: localhost.localdomain
ID: 3ZMY:RKZY:MNOQ:USOO:AU6Q:HITD:IHIV:NHCM:XLUY:OYOJ:HTS2:62WJ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
Product License: Community Engine
WARNING: bridge-nf-call-iptables is disabled
WARNING: bridge-nf-call-ip6tables is disabled
[root@localhost ~]#
이 Docker가 설치되었으므로 다음 섹션을 계속할 수 있습니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSON
JSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다.
그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다.
저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.
[root@localhost ~]# yum remove docker \
docker-client \
docker-client-latest \
docker-common \
docker-latest \
docker-latest-logrotate \
docker-logrotate \
docker-engine
Docker Engine의 커뮤니티 버전을 사용합니다.
Docker Yum 웨어하우스 설치
[root@localhost ~]# yum install -y yum-utils \
device-mapper-persistent-data \
lvm2
Docker의 안정적인 버전 라이브러리를 설치합니다.
[root@localhost ~]# yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
홈페이지에 따르면 Nightly 버전이 필요하면 홈페이지를 참고하여 해당 Yum 창고를 설치하세요.
Docker 설치
[root@localhost ~]# yum install docker-ce docker-ce-cli containerd.io
Docker 구성
시작 설정
[root@localhost ~]# systemctl enable docker
프록시 서버 구성
프록시 서버의 설정은 과학적인 인터넷이 필요한 거울, 예를 들어 쿠버넷의 거울을 다운로드하는 데 사용됩니다.현재 사용자의 루트 경로에서 Docker 구성 파일을 생성합니다.
# mkdir -p /etc/systemd/system/docker.service.d/
# vi /etc/systemd/system/docker.service.d/http-proxy.conf
[Service]
Environment="HTTP_PROXY=http://xxx.xxx.xxx.xxx:8118/" "NO_PROXY=localhost,127.0.0.1,xxx.xxx.xxx.xxx,hub.twinkle.net,*.docker.io"
#
# vi /etc/systemd/system/docker.service.d/https-proxy.conf
[Service]
Environment="HTTP_PROXY=http://192.168.0.127:8118/" "NO_PROXY=localhost,127.0.0.1,xxx.xxx.xxx.xxx,hub.twinkle.net,*.docker.io"
Docker 시작
Docker를 시작합니다.
[root@localhost ~]# systemctl start docker
[root@localhost ~]# docker info
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 0
Server Version: 18.09.0
Storage Driver: overlay2
Backing Filesystem: xfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: systemd
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: c4446665cb9c30056f4998ed953e6d4ff22c7c39
runc version: 4fc53a81fb7c994640722ac585fa9ca548971871
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.20.0-1.el7.elrepo.x86_64
Operating System: CentOS Linux 7 (Core)
OSType: linux
Architecture: x86_64
CPUs: 24
Total Memory: 62.8GiB
Name: localhost.localdomain
ID: 3ZMY:RKZY:MNOQ:USOO:AU6Q:HITD:IHIV:NHCM:XLUY:OYOJ:HTS2:62WJ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
Product License: Community Engine
WARNING: bridge-nf-call-iptables is disabled
WARNING: bridge-nf-call-ip6tables is disabled
[root@localhost ~]#
이 Docker가 설치되었으므로 다음 섹션을 계속할 수 있습니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.