rhel 7 配置国内公网yum源

rhel7 配置国内163 Centos yum 源,会因为未注册而不能使用;

红帽需要操作系统注册后才能使用yum。如果是这样就很头疼了,如果我们内网环境无法注册,或者我们不想注册难道不能使用了吗?
办法还是有的,那就让我们把这个功能关掉。

[问题分析]
1、yum源调用订阅管理器插件(其实是一个脚本)

 /usr/lib/yum-plugins/subscription-manager.py 

这个脚本中定义了订阅管理器的配置文件

db8cee403694487980f3bf1da772fcba.png

2、订阅管理器配置文件定义功能启停

/etc/yum/pluginconf.d/subscription-manager.conf 
[main] 
enabled=1

3、如果订阅管理器是开启的,就会更新repo文件
/etc/yum.repos.d/redhat.repo
也就是说开启订阅管理器,就会更新或者重置redhat.repo,即使你把这个文件删掉,也不管用。
[解决方法]
关闭订阅管理器功能

[root@localhost yum.repos.d]# vim /etc/yum/pluginconf.d/subscription-manager.conf
[main]
enabled=0

将enabled置为0即可。

测试过程:

  1. 首先移除/etc/yum.repos.d/ 下的 rhel 源
[root@mysqlhost ~]# cd /etc/yum.repos.d/
[root@mysqlhost yum.repos.d]# ls
 redhat.repo
[root@mysqlhost yum.repos.d]# rm *
rm: remove regular file ‘redhat.repo’? y
[root@mysqlhost yum.repos.d]# ll
total 0
[root@mysqlhost yum.repos.d]# 
  1. 下载163 镜像仓库的yum源,然后查看文件
[root@mysqlhost yum.repos.d]# wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
--2023-02-14 20:11:21--  http://mirrors.163.com/.help/CentOS7-Base-163.repo
Resolving mirrors.163.com (mirrors.163.com)... 101.71.33.11
Connecting to mirrors.163.com (mirrors.163.com)|101.71.33.11|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1572 (1.5K) [application/octet-stream]
Saving to: ‘CentOS7-Base-163.repo’

100%[=======================================================================================>] 1,572       --.-K/s   in 0s      

2023-02-14 20:11:21 (102 MB/s) - ‘CentOS7-Base-163.repo’ saved [1572/1572]

[root@mysqlhost yum.repos.d]# ls
CentOS7-Base-163.repo
  1. 使用 yum clean all 清除yum 缓存
[root@mysqlhost yum.repos.d]# yum clean all 
Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager

This system is not registered with an entitlement server. You can use subscription-manager to register.

Cleaning repos: base extras updates
[root@mysqlhost yum.repos.d]# ls
CentOS7-Base-163.repo  redhat.repo

发现清理过程中报错该系统未注册,您可以使用订阅管理器进行注册。并且会讲原有的redat.repo 回复回来,

  1. 配置关闭订阅管理器功能
[root@mysqlhost yum.repos.d]# vim /etc/yum/pluginconf.d/subscription-manager.conf 
[main]
enabled=0
  1. 关闭订阅管理器后再次执行:
    a. 移除rhel 的repl 源
    b. 执行 yum makecache
[root@mysqlhost yum.repos.d]# ls
CentOS7-Base-163.repo  redhat.repo
[root@mysqlhost yum.repos.d]# rm redhat.repo 
rm: remove regular file ‘redhat.repo’? y
[root@mysqlhost yum.repos.d]# ll
total 4
-rw-r--r--. 1 root root 1572 Dec  1  2016 CentOS7-Base-163.repo
[root@mysqlhost yum.repos.d]# yum makecache 
Loaded plugins: langpacks, product-id, search-disabled-repos
http://mirrors.163.com/centos/7Server/os/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
Trying other mirror.
To address this issue please refer to the below knowledge base article 

https://access.redhat.com/articles/1320623

If above article doesn't help to resolve this issue please open a ticket with Red Hat Support.



 One of the configured repositories failed (CentOS-7Server - Base - 163.com),
 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=base ...

     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 base
        or
            subscription-manager repos --disable=base

     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=base.skip_if_unavailable=true

failure: repodata/repomd.xml from base: [Errno 256] No more mirrors to try.
http://mirrors.163.com/centos/7Server/os/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found

发现报错为找不到对应的路径:

http://mirrors.163.com/centos/7Server/os/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found

6 、查看163 的repl源文件,并查看源地址的网站,以及前面的报错找不到的对应路径。


image.png

image.png

image.png

发现是因为 repo 中 的/$releasever/ 获取的值获取错误了,因为系统是rhel,而我们用的源是Centos 因此将 /$releasever/直接改为/7/ 即可。
image.png

再次执行yum makecache ,并尝试使用yum 安装lrzsz 工具

[root@mysqlhost yum.repos.d]# yum makecache 
Loaded plugins: langpacks, product-id, search-disabled-repos
base                                                                                                      | 3.6 kB  00:00:00     
extras                                                                                                    | 2.9 kB  00:00:00     
updates                                                                                                   | 2.9 kB  00:00:00     
(1/10): base/x86_64/group_gz                                                                              | 153 kB  00:00:00     
(2/10): base/x86_64/primary_db                                                                            | 6.1 MB  00:00:01     
(3/10): base/x86_64/filelists_db                                                                          | 7.2 MB  00:00:01     
(4/10): extras/x86_64/primary_db                                                                          | 249 kB  00:00:00     
(5/10): extras/x86_64/filelists_db                                                                        | 276 kB  00:00:00     
(6/10): base/x86_64/other_db                                                                              | 2.6 MB  00:00:00     
(7/10): extras/x86_64/other_db                                                                            | 149 kB  00:00:00     
(8/10): updates/x86_64/filelists_db                                                                       |  11 MB  00:00:00     
(9/10): updates/x86_64/other_db                                                                           | 1.3 MB  00:00:00     
(10/10): updates/x86_64/primary_db                                                                        |  19 MB  00:00:01     
Metadata Cache Created
[root@mysqlhost yum.repos.d]# 
[root@mysqlhost yum.repos.d]# 
[root@mysqlhost yum.repos.d]# yum -y install lrzsz
Loaded plugins: langpacks, product-id, search-disabled-repos
Resolving Dependencies
--> Running transaction check
---> Package lrzsz.x86_64 0:0.12.20-36.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

=================================================================================================================================
 Package                     Arch                         Version                               Repository                  Size
=================================================================================================================================
Installing:
 lrzsz                       x86_64                       0.12.20-36.el7                        base                        78 k

Transaction Summary
=================================================================================================================================
Install  1 Package

Total download size: 78 k
Installed size: 181 k
Downloading packages:
warning: /var/cache/yum/x86_64/7Server/base/packages/lrzsz-0.12.20-36.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
Public key for lrzsz-0.12.20-36.el7.x86_64.rpm is not installed
lrzsz-0.12.20-36.el7.x86_64.rpm                                                                           |  78 kB  00:00:00     
Retrieving key from http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7
Importing GPG key 0xF4A80EB5:
 Userid     : "CentOS-7 Key (CentOS 7 Official Signing Key) <security@centos.org>"
 Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
 From       : http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : lrzsz-0.12.20-36.el7.x86_64                                                                                   1/1 
  Verifying  : lrzsz-0.12.20-36.el7.x86_64                                                                                   1/1 

Installed:
  lrzsz.x86_64 0:0.12.20-36.el7                                                                                                  

Complete!
[root@mysqlhost yum.repos.d]#                                                                  

最终成功。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,222评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,455评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,720评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,568评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,696评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,879评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,028评论 3 409
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,773评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,220评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,550评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,697评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,360评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,002评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,782评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,010评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,433评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,587评论 2 350

推荐阅读更多精彩内容