您的位置:首页 > 运维架构 > Linux

yum 失败(This system is not registered with RHN)

2012-08-30 11:05 477 查看
转载自:http://blog.csdn.net/hewy0526/article/details/7433967

使用redhat 系统在线安装时提示This system is not registered with RHN.如下:

[root@localhost ~]# yum install httpd

Loaded plugins: rhnplugin, security

This system is not registered with RHN.

RHN support will be disabled.

Setting up Install Process

No package httpd available.

Nothing to do

解决方案:

1.卸载redhat自带的yum组件

[root@localhost ~]# rpm -qa|grep yum|xargs rpm -e --nodeps

2.安装centos的yum包

[root@localhost ~]# wget  http://centos.ustc.edu.cn/centos/5/os/i386/CentOS/yum-metadata-parser-1.1.2-3.el5.centos.i386.rpm

[root@localhost ~]# wget http://mirrors.ustc.edu.cn/centos/5/os/i386/CentOS/yum-fastestmirror-1.1.16-21.el5.centos.noarch.rpm href="http://centos.ustc.edu.cn/centos/5/os/i386/CentOS/yum-fastestmirror-1.1.16-16.el5.centos.noarch.rpm" target=_blank>

[root@localhost ~]# wget http://mirrors.ustc.edu.cn/centos/5/os/i386/CentOS/yum-3.2.22-39.el5.centos.noarch.rpm href="http://centos.ustc.edu.cn/centos/5/os/i386/CentOS/yum-3.2.22-37.el5.centos.noarch.rpm" target=_blank>

[root@localhost ~]# rpm -ivh *.rpm

warning: yum-3.2.22-37.el5.centos.noarch.rpm: Header V3 DSA signature: NOKEY, key ID e8562897

Preparing...                ########################################### [100%]

   1:yum-metadata-parser    ########################################### [ 33%]

   2:yum-fastestmirror      ########################################### [ 67%]

   3:yum                    ########################################### [100%]

 

3. 下载更新源,并存放在系统目录中

[root@localhost ~]# wget http://docs.linuxtone.org/soft/lemp/CentOS-Base.repo href="http://docs.linuxtone.org/soft/lemp/CentOS-Base.repo" target=_blank>

[root@localhost ~]#mv CentOS_Base.repo /etc/yum.repos.d/CentOS-Base.repo

 

4.生成缓存并进行安装

[root@localhost ~]# yum makecache

[root@localhost ~]# yum install httpd
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息