docker的卸载
1. 先停止docker服务
执行命令
systemctl stop docker
2. 删除docker的安装包
- 先查找docker的安装包
执行命令
yum list installed | grep docker
- 然后删除上面查找的安装包
执行命令
yum remove docker-ce.xxx docker-ce-cli.xxx docker-ce-rootless-extras.xxx docker-scan-plugin.xxx
- 最后验证下,是不是没有docker的安装包了
执行命令
rqm -qa | grep docker
3. 删除docker的镜像文件(默认在/var/lib/docker目录下)
或者保险起见,在卸载之前先用docker info查看存储的位置(如果没有重新挂其他的目录的情况下,都是在/var/lib/docker)。
执行命令
rm -rf /var/lib/docker
执行完以上步骤docker就卸载成功了。
docker安装
本例中安装docker的版本是19.03.09,安装方式是通过离线安装包安装。安装包下载地址
- 解压docker的安装文件
在放安装包目录里执行命令
tar -zxvf docker-19.03.9.tgz
- 将解压的文件复制到/usr/bin/
执行命令
cp docker/* /usr/bin/
- 在/etc/systemd/system目录下创建docker.service文件,并给该文件添加执行权限。
文件名为docker.service的内容如下:
[Unit]Description=Docker Application Container Engine
Documentation=https://docs.docker.com
After=network-online.target firewalld.service
Wants=network-online.target
[Service]Type=notify
# the default is not to use systemd for cgroups because the delegate issues still# exists and systemd currently does not support the cgroup feature set required# for containers run by dockerExecStart=/usr/bin/dockerd
ExecReload=/bin/kill -s HUP $MAINPID# Having non-zero Limit*s causes performance problems due to accounting overhead# in the kernel. We recommend using cgroups to do container-local accounting.LimitNOFILE=infinity
LimitNPROC=infinity
LimitCORE=infinity
# Uncomment TasksMax if your systemd version supports it.# Only systemd 226 and above support this version.#TasksMax=infinityTimeoutStartSec=0# set delegate yes so that systemd does not reset the cgroups of docker containersDelegate=yes
# kill only the docker process, not all processes in the cgroupKillMode=process
# restart the docker process if it exits prematurelyRestart=on-failure
StartLimitBurst=3StartLimitInterval=60s
[Install]WantedBy=multi-user.target
给该文件添加可执行权限。
执行命令
chmod +x /etc/systemd/system/docker.service
- 启动docker
执行命令
systemctl daemon-reload
重载unit配置文件
执行命令systemctl start docker
启动Docker
执行命令systemctl enable docker.service
设置开机自启,看自身需求执行
执行命令systemctl status docker
查看Docker状态
- 检查成功与否
执行命令
docker -v
查看Docker版本
版权归原作者 未定义_jx 所有, 如有侵权,请联系我们删除。