您的位置:首页 > 科技 > IT业 > 重庆建设人才网_网络网络建设_新网域名查询_重庆森林电影

重庆建设人才网_网络网络建设_新网域名查询_重庆森林电影

2024/11/17 19:40:31 来源:https://blog.csdn.net/weixin_44678104/article/details/143052607  浏览:    关键词:重庆建设人才网_网络网络建设_新网域名查询_重庆森林电影
重庆建设人才网_网络网络建设_新网域名查询_重庆森林电影

不知是不是在安装虚拟机的时候漏了什么步骤,以下是我安装好Linux后开始安装Docker碰到的错误!以下是GPT的回答,分享一下。

在CentOS 7 上安装 Docker 的步骤。以下是详细的安装教程:

1. 更新系统

确保系统软件包是最新的。运行以下命令来更新你的 CentOS 系统:

sudo yum update -y

2. 安装必要的依赖

Docker 依赖一些软件包,首先需要安装这些包:

sudo yum install -y yum-utils device-mapper-persistent-data lvm2

3. 设置 Docker 仓库

安装 Docker 的官方仓库配置工具:

sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo

4. 安装 Docker

现在可以通过以下命令安装 Docker:

sudo yum install docker-ce docker-ce-cli containerd.io

5. 启动 Docker 服务

安装完成后,启动并设置 Docker 服务开机自启动:

sudo systemctl start docker
sudo systemctl enable docker

6. 验证 Docker 是否安装成功

运行以下命令来验证 Docker 是否正常工作:

sudo docker version

如果你能看到 Docker 客户端和服务器的版本信息,说明 Docker 安装成功。

7. 测试 Docker(可选)

你可以运行一个简单的容器来确认 Docker 正常运行:

docker run hello-world

完成这些步骤后,Docker 应该已经在你的 CentOS 7 系统上成功安装并能够正常使用了。


不出意外,报错了!

[root@localhost network-scripts]# sudo yum update -y
已加载插件:fastestmirror
Loading mirror speeds from cached hostfile
Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error was
14: curl#6 - "Could not resolve host: mirrorlist.centos.org; 未知的错误"One of the configured repositories failed (未知),and yum doesn't have enough cached data to continue. At this point the onlysafe thing yum can do is fail. There are a few ways to work "fix" this:1. Contact the upstream for the repository and get them to fix the problem.2. Reconfigure the baseurl/etc. for the repository, to point to a workingupstream. This is most often useful if you are using a newerdistribution release than is supported by the repository (and thepackages for the previous distribution release still work).3. Run the command with the repository temporarily disabledyum --disablerepo=<repoid> ...4. Disable the repository permanently, so yum won't use it by default. Yumwill then just ignore the repository until you permanently enable itagain or use --enablerepo for temporary usage:yum-config-manager --disable <repoid>orsubscription-manager repos --disable=<repoid>5. Configure the failing repository to be skipped, if it is unavailable.Note that yum will try to contact the repo. when it runs most commands,so will have to try and fail each time (and thus. yum will be be muchslower). If it is a very temporary problem though, this is often a nicecompromise:yum-config-manager --save --setopt=<repoid>.skip_if_unavailable=trueCannot find a valid baseurl for repo: base/7/x86_64

该错误是因为无法解析 mirrorlist.centos.org,这通常是由于网络问题或 DNS 配置问题引起的。你可以按以下步骤排查并解决问题:

1. 检查网络连接

首先,确认你可以访问互联网。你可以使用 ping 命令测试连接:

ping 8.8.8.8

如果没有响应,说明你的服务器可能无法连接到互联网。确保网络配置正确。

2. 检查 DNS 配置

如果可以 ping 通 IP 地址,但无法解析域名,可能是 DNS 服务器设置有问题。
你可以检查 /etc/resolv.conf 文件,确保 DNS 配置正确。

可以尝试手动设置 Google 的公共 DNS 服务器:

sudo vi /etc/resolv.conf

将以下内容添加到文件中:

nameserver 8.8.8.8
nameserver 8.8.4.4

按Esc键输入:wq保存并退出文件,然后再尝试运行 yum update。

3. 手动配置 CentOS 源

如果网络连接正常,但仍然无法连接到 mirrorlist.centos.org,可以尝试手动设置一个可靠的镜像源。

编辑 CentOS 的基础仓库配置文件:

sudo vi /etc/yum.repos.d/CentOS-Base.repo

找到如下行:

mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os

将其注释掉,并替换为以下内容(可以选用离你最近的镜像):

baseurl=http://mirrors.aliyun.com/centos/$releasever/os/$basearch/

同样的,还要替换其他仓库配置(如 updates、extras)中的 mirrorlist 行:

baseurl=http://mirrors.aliyun.com/centos/$releasever/updates/$basearch/
baseurl=http://mirrors.aliyun.com/centos/$releasever/extras/$basearch/

保存并退出,然后运行:

sudo yum clean all
sudo yum update -y

不出意外,报错继续。

Error downloading packages:docker-buildx-plugin-0.14.1-1.el7.x86_64: [Errno 256] No more mirrors to try.containerd.io-1.6.33-3.1.el7.x86_64: [Errno 256] No more mirrors to try.

出现 [Errno 256] No more mirrors to try 错误,说明你当前所使用的 Docker 安装源中的某些包无法正常下载。可能的原因包括镜像源不可用或网络问题。以下是一些解决方法:

1. 手动更换 Docker 的镜像源

如果 Docker 的默认镜像源出现问题,你可以尝试使用国内的镜像源来替代。国内有一些提供 Docker 安装包的镜像站点,例如阿里云或清华大学开源镜像站。

替换 Docker 仓库为阿里云镜像源

首先,移除现有的 Docker 仓库:

sudo rm -f /etc/yum.repos.d/docker-ce.repo

然后,添加阿里云的 Docker 仓库:

sudo yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
替换 Docker 仓库为清华大学镜像源

也可以使用清华大学的 Docker 镜像源:

sudo yum-config-manager --add-repo https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/centos/docker-ce.repo

2. 清理缓存并重新安装 Docker

如果镜像源更改之后仍然报错,尝试清理缓存并重新安装 Docker:

sudo yum clean all
sudo yum makecache
sudo yum install docker-ce docker-ce-cli containerd.io

OK 问题解决了!

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com