赞
踩
传统虚拟机技术
Hypervisor,又称虚拟机监视器(virtual machine monitor,VMM),是用来建立与执行虚拟机器的软件、固件或硬件。
被 Hypervisor 用来执行一个或多个虚拟机器的电脑称为主体机器(host machine),这些虚拟机器则称为客体机器(guest machine)。
容器虚拟化技术
Docker 卸载:https://blog.csdn.net/qq_29726869/article/details/113353315
安装方式选择
设置 Docker 资源库
安装所需的软件包(可以先查询是否安装):yum-utils( 提供了 yum-config-manager)
yum install -y yum-utils
设置仓库
# 国外源(不使用)
sudo yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
# 阿里云源
sudo yum-config-manager \
--add-repo \
http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
# 清华大学源
sudo yum-config-manager \
--add-repo \
https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/centos/docker-ce.repo
安装最新版本的 Docker 引擎
sudo yum install docker-ce docker-ce-cli containerd.io docker-compose-plugin
# 旧版本安装命令
# sudo yum install docker-ce-<VERSION_STRING> docker-ce-cli-<VERSION_STRING> containerd.io
# 旧版本安装命令示例
# sudo yum install docker-ce-<VERSION_STRING> docker-ce-cli-<VERSION_STRING> containerd.io
启动失败:Failed to start docker.service: Unit not found.
解决:
cd /usr/lib/systemd/system
vim docker.socket
启动 Docker
systemctl start docker
通过允许 hello-world 镜像验证 Docker 引擎是否正确安装
docker run hello-world
安装成功
查看 Docker 版本:docker version
卸载
mkdir -p /etc/docker
tee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors": [
"https://docker.mirrors.ustc.edu.cn/",
"https://hub-mirror.c.163.com/",
"https://reg-mirror.qiniu.com"
]
}
EOF
systemctl daemon-reload
systemctl restart docker
验证加速器是否生效
docker info
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。