美文网首页
Redhat 7.x配置yum源

Redhat 7.x配置yum源

作者: DBA成长之路 | 来源:发表于2020-07-09 10:27 被阅读0次

版权声明:本文为木偶人shaon原创文章,转载请注明原文地址,非常感谢。

https://blog.csdn.net/wh211212/article/details/52936814

1、前提

由于redhat系统不再期官网注册,系统安装完成之后无法正常使用期yun源,因此更改redhat的yum源为CentOS的源

系统环境

[root@docker01 ~]# cat /etc/redhat-release
Red Hat Enterprise Linux Server release 7.8 (Maipo)

2、删除redhat自带的yum源

[root@docker01 ~]# rpm -aq|grep yum|xargs rpm -e --nodeps
警告:/etc/yum/pluginconf.d/langpacks.conf 已另存为 /etc/yum/pluginconf.d/langpacks.conf.rpmsave

3、从阿里云下载yum相关安装包

wget http://mirrors.aliyun.com/centos/7.8.2003/os/x86_64/Packages/yum-3.4.3-167.el7.centos.noarch.rpm                
wget http://mirrors.aliyun.com/centos/7.8.2003/os/x86_64/Packages/yum-metadata-parser-1.1.4-10.el7.x86_64.rpm        
wget http://mirrors.aliyun.com/centos/7.8.2003/os/x86_64/Packages/yum-plugin-fastestmirror-1.1.31-53.el7.noarch.rpm 

4、rpm安装下载的yum包,按顺序执行下面命令

rpm -ivh yum-metadata-parser-1.1.4-10.el7.x86_64.rpm  
rpm -ivh yum-3.4.3-167.el7.centos.noarch.rpm  yum-plugin-fastestmirror-1.1.31-53.el7.noarch.rpm  

5、创建文件/etc/yum.repos.d/aliyun.repo并写入

vim /etc/yum.repos.d/aliyun.repo

[base]
name=CentOS-$releasever - Base
baseurl=http://mirrors.aliyun.com/centos/7.8.2003/os/$basearch/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos/7.8.2003/os/x86_64/RPM-GPG-KEY-CentOS-7


#released updates
[updates]
name=CentOS-$releasever - Updates
baseurl=http://mirrors.aliyun.com/centos/7.8.2003/updates/$basearch/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos/7.8.2003/os/x86_64/RPM-GPG-KEY-CentOS-7


[extras]
name=CentOS-$releasever - Extras
baseurl=http://mirrors.aliyun.com/centos/7.8.2003/extras//$basearch/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos/7.8.2003/os/x86_64/RPM-GPG-KEY-CentOS-7

[centosplus]
name=CentOS-$releasever - Plus
baseurl=http://mirrors.aliyun.com/centos/7.8.2003/centosplus//$basearch/
gpgcheck=1
enabled=0

6、创建aliyun前记得把redhat自带的源一走或者删除

yum clean all && yum makecache

7、测试源

yum update -y --skip-broken

能看到已经能够成功的通过yum安装相关软件包

如果报错:

wget http://mirrors.aliyun.com/centos/7.8.2003/os/x86_64/RPM-GPG-KEY-CentOS-7
rpm –import RPM-GPG-KEY-CentOS-7

相关文章

  • Redhat 7.x配置yum源

    版权声明:本文为木偶人shaon原创文章,转载请注明原文地址,非常感谢。 https://blog.csdn.ne...

  • redhat yum源配置

    1、yum是什么? 说到yum,要先说一下rpm。 rpm用来进行软件的安装、查询、卸载、升级等工作、但是她有一个...

  • Redhat yum源配置

    针对红帽的yum源信息、该官方源只针对付费用户。所以将yum源配置到centos上的。

  • rsync服务器

    配置yum源 vim /etc/yum.repos.d/cdrom.repo #redhat8 安装软件 moun...

  • mongodb安装

    官网redhat安装 配置yum源 [mongodb-org-3.6]name=MongoDB Repositor...

  • redhat 7x 安装配置postgres 10

    redhat 7.x 安装配置postgresql 10 环境 redhat 7.4 root账户运行 操作 安装...

  • redhat配置yum静态源

    配置yum静态源: 1. 虚拟机先把镜像插入到系统中 2. 挂载镜像 命令:mkdir /media/cdro...

  • Rethat 6.8配置样本源

    一般安装好redhat后,不能注册的话,不能使用系统自带的yum源。但是我们可以自己配置yum源来解决这一问题。下...

  • centos(redhat)yum配置本地源

    本次以升级centos6.9的openssh为例,介绍升级openssh的方法。 0、准备材料 centos镜像C...

  • RedHat Linux 7 配置yum源

    配置本地源 挂载iso光盘,查看磁盘设备 [root@192 Desktop]# df -hFilesystem ...

网友评论

      本文标题:Redhat 7.x配置yum源

      本文链接:https://www.haomeiwen.com/subject/cakjcktx.html