执行yum install ntpdate ‐y报错Could not resolve host: download.example; 未知的名称或服务

本文涉及的产品
容器服务 Serverless 版 ACK Serverless,952元额度 多规格
容器服务 Serverless 版 ACK Serverless,317元额度 多规格
简介: 执行yum install ntpdate ‐y报错Could not resolve host: download.example; 未知的名称或服务

#Kubernetes安装教程#

遇到的问题文章出处:https://blog.csdn.net/java_wxid/article/details/127967699


遇到的问题:设置时间同步步骤时,执行以下命令yum install ntpdate ‐y


报错(参考报错提示.txt)


尝试解决:

1.设置了docker加速url:http://hub-mirror.c.163.com 没起作用

2.根据报错信息《Could not resolve host: mirrorlist.centos.org; 未知的错误》 怀疑是什么配置导致我的网络无法连接了,尝试使用命令:ping baidu.com测试网络连通性。提示:ping: www.baidu.com: 域名解析暂时失败。


这个时候就去解决这个问题了,尝试vim /etc/dhcpcd.conf添加static domain_name_servers=114.114.114.114保存之后,reboot重启之后,重新尝试ping baidu.com。发现通了。继续执行,yum install ntpdate ‐y命令,发现还是一样报错。《Could not resolve host: download.example; 未知的名称或服务》


这个时候就去解决这个问题了,尝试解决这个问题,vim /etc/sysconfig/network-scripts/ifcfg-eno16777736

增加这三行

DNS1=8.8.8.8
 DNS2=114.114.114.114
 PEERDNS=no

重启网络service network restart

报错:

Restarting network (via systemctl):  Job for network.service failed because the control process exited with error 
code. See "systemctl status network.service" and "journalctl -xe" for details.

一气之下重启了机器:reboot

继续执行,yum install ntpdate ‐y命令

发现又出现新的问题:

[root@k8s-master ~]# yum install ntpdate ‐y
已加载插件:fastestmirror, langpacks, product-id, search-disabled-repos, subscription-manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
/var/run/yum.pid 已被锁定,PID 为 3885 的另一个程序正在运行。
Another app is currently holding the yum lock; waiting for it to exit...
  另一个应用程序是:PackageKit
    内存:285 M RSS (879 MB VSZ)
    已启动: Fri Dec  9 23:13:09 2022 - 00:05之前
    状态  :睡眠中,进程ID:3885
Another app is currently holding the yum lock; waiting for it to exit...
  另一个应用程序是:PackageKit
    内存:285 M RSS (879 MB VSZ)
    已启动: Fri Dec  9 23:13:09 2022 - 00:07之前
    状态  :睡眠中,进程ID:3885
^C
Exiting on user cancel.

尝试解决这个问题,编辑/etc/yum/pluginconf.d/langpacks.conf文件将第一行:enable=1改为enable=0,保存之后,还是不起作用,尝试rm -f /var/run/yum.pid强制关掉yum进程。还是不行,错误提示还是跟文本中的一样。


这个时候注意到了这个提示《https://mirrors.aliyun.com/kubernetes/yum/repos/kubernetes%E2%80%90el7%E2%80%90x86_64/repodata/repomd.xml:[Errno 14] HTTPS Error 404 - Not Found》


怀疑有可能是添加k8s yum源步骤的时候,老师给的配置连接失效了,配置如下:

baseurl=https://mirrors.aliyun.com/kubernetes/yum/repos/kubernetes‐el7‐x86_64


直接访问没什么作用,不知道是不是这个原因?

错误提示文本如下(示例):

[root@k8s-master ~]# yum install ntpdate ‐y
已加载插件:fastestmirror, langpacks, product-id, search-disabled-repos, subscription-manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
Loading mirror speeds from cached hostfile
 * base: mirrors.nju.edu.cn
 * centos-sclo-rh: mirrors.nju.edu.cn
 * extras: ftp.sjtu.edu.cn
 * updates: mirrors.nju.edu.cn
http://download.example/pub/epel/7/x86_64/repodata/repomd.xml: [Errno 14] curl#6 - "Could not resolve host: download.example; 未知的名称或服务"
正在尝试其它镜像。
https://mirrors.aliyun.com/kubernetes/yum/repos/kubernetes%E2%80%90el7%E2%80%90x86_64/repodata/repomd.xml: [Errno 14] HTTPS Error 404 - Not Found
正在尝试其它镜像。
To address this issue please refer to the below wiki article 
https://wiki.centos.org/yum-errors
If above article doesn't help to resolve this issue please use https://bugs.centos.org/.
 One of the configured repositories failed (Kubernetes),
 and yum doesn't have enough cached data to continue. At this point the only
 safe 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 working
        upstream. This is most often useful if you are using a newer
        distribution release than is supported by the repository (and the
        packages for the previous distribution release still work).
     3. Run the command with the repository temporarily disabled
            yum --disablerepo=kubernetes ...
     4. Disable the repository permanently, so yum won't use it by default. Yum
        will then just ignore the repository until you permanently enable it
        again or use --enablerepo for temporary usage:
            yum-config-manager --disable kubernetes
        or
            subscription-manager repos --disable=kubernetes
     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 much
        slower). If it is a very temporary problem though, this is often a nice
        compromise:
            yum-config-manager --save --setopt=kubernetes.skip_if_unavailable=true
failure: repodata/repomd.xml from kubernetes: [Errno 256] No more mirrors to try.
https://mirrors.aliyun.com/kubernetes/yum/repos/kubernetes‐el7‐x86_64/repodata/repomd.xml: [Errno 14] HTTPS Error 404 - Not Found
相关实践学习
通过Ingress进行灰度发布
本场景您将运行一个简单的应用,部署一个新的应用用于新的发布,并通过Ingress能力实现灰度发布。
容器应用与集群管理
欢迎来到《容器应用与集群管理》课程,本课程是“云原生容器Clouder认证“系列中的第二阶段。课程将向您介绍与容器集群相关的概念和技术,这些概念和技术可以帮助您了解阿里云容器服务ACK/ACK Serverless的使用。同时,本课程也会向您介绍可以采取的工具、方法和可操作步骤,以帮助您了解如何基于容器服务ACK Serverless构建和管理企业级应用。 学习完本课程后,您将能够: 掌握容器集群、容器编排的基本概念 掌握Kubernetes的基础概念及核心思想 掌握阿里云容器服务ACK/ACK Serverless概念及使用方法 基于容器服务ACK Serverless搭建和管理企业级网站应用
相关文章
|
3月前
|
网络协议 Linux
CentOS7 yum安装报错“Could not resolve host: mirrorlist.centos.org;"之解决办法(换源)
CentOS7 yum安装报错“Could not resolve host: mirrorlist.centos.org; Name or service not known“之解决办法(换源)
|
4月前
|
应用服务中间件 开发工具 nginx
Ngnix09目录结构分析,使用tree工具可以Ngnix目录中以一个树的方式呈现出来,yum install -y tree,tail -f nginx/logs/access.log
Ngnix09目录结构分析,使用tree工具可以Ngnix目录中以一个树的方式呈现出来,yum install -y tree,tail -f nginx/logs/access.log
|
4月前
|
关系型数据库 MySQL Linux
Linux部署实战前言,MySQL在CentOS安装【单机软件】,MySQL的安装需要root权限,yum install mysql,systemctl enable mysqld开机自启的意思
Linux部署实战前言,MySQL在CentOS安装【单机软件】,MySQL的安装需要root权限,yum install mysql,systemctl enable mysqld开机自启的意思
|
4月前
|
域名解析 Linux
IP地址和主机名,ifconfig查看本机的ip地址,无法用,yum -y install net-tools,输入ifconfig之后还会列明网卡,ens33表明的是网卡,inet ip地址,000
IP地址和主机名,ifconfig查看本机的ip地址,无法用,yum -y install net-tools,输入ifconfig之后还会列明网卡,ens33表明的是网卡,inet ip地址,000
|
4月前
|
Ubuntu Linux
Linux软件安装-Linux系统靠yum命令安装软件,yum命令是一个RPM包软件管理器,用于自动化安装配置Linux软件,.rpm是Linux包下的软件,yum install下载 wget re
Linux软件安装-Linux系统靠yum命令安装软件,yum命令是一个RPM包软件管理器,用于自动化安装配置Linux软件,.rpm是Linux包下的软件,yum install下载 wget re
|
4月前
|
缓存 Linux 开发工具
docker的centos容器使用yum报错
docker的centos容器使用yum报错
243 0
|
6月前
|
应用服务中间件 nginx
yum 安装报错 No package nginx available Error:Nothing to do
yum 安装报错 No package nginx available Error:Nothing to do
374 1
|
6月前
|
关系型数据库 MySQL Linux
服务器脚本推荐,yum更新阿里镜像源、安装Docker、使用Docker安装MySQL服务
服务器脚本推荐,yum更新阿里镜像源、安装Docker、使用Docker安装MySQL服务
775 1
|
6月前
|
Python
yum 安装报错 File "/usr/bin/yum", line 30
yum 安装报错 File "/usr/bin/yum", line 30
150 0
|
4天前
|
存储 缓存 Linux
【Linux】另一种基于rpm安装yum的方式
通过本文的方法,您可以在离线环境中使用RPM包安装YUM并进行必要的配置。这种方法适用于无法直接访问互联网的服务器或需要严格控制软件源的环境。通过配置本地YUM仓库,确保了软件包的安装和更新可以顺利进行。希望本文能够为您在特定环境中部署YUM提供实用的指导。
34 0