记录:356
场景:在CentOS 7.9操作系统上,使用国内开源镜像站配置常用yum源。满足使用yum命令安装各类软件需求。包括CentOS基础包、epel包、scl包、k8s等。
版本:
操作系统:CentOS 7.9
开源镜像站:
阿里云开源镜像站:https://mirrors.aliyun.com/
网易开源镜像站:https://mirrors.163.com/
中科大开源镜像站:https://mirrors.ustc.edu.cn/
清华开源镜像站:https://mirrors.tuna.tsinghua.edu.cn/
基础环境:
安装wget工具:yum install -y wget
安装yum-utils工具:yum install -y yum-utils
解析:安装wget后,可以使用wget下载文件;安装yum-utils后可以使用yum-config-manager命令下载文件。
1.配置CentOS 镜像(CentOS-Base.repo)
(1)下载yum源配置文件到本地
命令:wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
解析:把配置文件下载到本机/etc/yum.repos.d目录下。
(2)清空缓存和创建yum源元数据缓存
命令:yum clean all && yum makecache
(3)功能
配置CentOS-Base.repo地址,包括CentOS-7-Base、CentOS-7-Extras、CentOS-7-Updates三个镜像仓库安装包。
2.配置Epel 镜像
(1)下载yum源配置文件到本地
命令:wget -O /etc/yum.repos.d/epel-7.repo https://mirrors.aliyun.com/repo/epel-7.repo
解析:把配置文件下载到本机/etc/yum.repos.d目录下。
(2)清空缓存和创建yum源元数据缓存
命令:yum clean all && yum makecache
(3)功能
EPEL(Extra Packages for Enterprise Linux), 是由Fedora Special Interest Group维护的Enterprise Linux(RHEL、CentOS)中经常用到的包。
3.配置SCLo-scl镜像
(1)配置CentOS-SCLo-scl-7-9.repo
修改命令:vi /etc/yum.repos.d/CentOS-SCLo-scl-7-9.repo
修改内容:
[CentOS-SCLo-scl]
name=CentOS-SCLo-scl
baseurl=https://mirrors.aliyun.com/centos/7.9.2009/sclo/x86_64/sclo/
enabled=1
gpgcheck=0
[CentOS-SCLo-scl-rh]
name=CentOS-SCLo-scl-rh
baseurl=https://mirrors.aliyun.com/centos/7.9.2009/sclo/x86_64/rh
enabled=1
gpgcheck=0
解析:在本机/etc/yum.repos.d目录下创建配置文件并添加相关内容。
(2)清空缓存和创建yum源元数据缓存
命令:yum clean all && yum makecache
(3)功能
SCL,Software Collections的简称。软件集合使您能够构建、安装和使用同一系统上的多个软件版本,无影响系统范围内安装的软件包。
4.配置docker-ce镜像
(1)下载yum源配置文件到本地
命令:wget -O /etc/yum.repos.d/docker-ce.repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
解析:把配置文件下载到本机/etc/yum.repos.d目录下。
(2)清空缓存和创建yum源元数据缓存
命令:yum clean all && yum makecache
(3)功能
Docker CE是免费的Docker产品的新名称,Docker CE包含了完整的Docker平台,非常适合开发人员和运维团队构建容器APP。
5.配置kubernetes镜像
(1)配置kubernetes.repo
修改命令:vi /etc/yum.repos.d/kubernetes.repo
修改内容:
[k8s]
name=k8s
baseurl=https://mirrors.aliyun.com/kubernetes/yum/repos/kubernetes-el7-x86_64
enabled=1
gpgcheck=0
解析:在本机/etc/yum.repos.d目录下创建配置文件并添加相关内容。
(2)清空缓存和创建yum源元数据缓存
命令:yum clean all && yum makecache
(3)功能
Kubernetes是一个开源系统,用于容器化应用的自动部署、扩缩和管理。它将构成应用的容器按逻辑单位进行分组以便于管理和发现。
6.配置ceph镜像
(1)配置ceph-rpm-15.2.17.repo
修改命令:vi /etc/yum.repos.d/ceph-rpm-15.2.17.repo
修改内容:
[ceph-rpm-15.2.17_x86_64]
name=ceph-rpm-15.2.17_x86_64
baseurl=https://mirrors.aliyun.com/ceph/rpm-15.2.17/el7/x86_64/
enabled=1
gpgcheck=0
[ceph-rpm-15.2.17-noarch]
name=ceph-rpm-15.2.17-noarch
baseurl=https://mirrors.aliyun.com/ceph/rpm-15.2.17/el7/noarch/
enabled=1
gpgcheck=0
解析:在本机/etc/yum.repos.d目录下创建配置文件并添加相关内容。
(2)清空缓存和创建yum源元数据缓存
命令:yum clean all && yum makecache
(3)功能
Ceph is a distributed object store and file system designed to provide excellent performance, reliability and scalability.
以上,感谢。
2022年12月8日