Atualiza um repo da Red Hat sem pacotes

1

Estou tentando instalar alguns pacotes no meu servidor RHEL 5.10 (Tikanga), mas estou impedido de fazer isso por causa de um repositório instalado com zero pacotes.

Quando eu faço yum repolist , ele aparece como este (outros repositórios ocultos):

 repo id       repo name                     status 
 zabbix        RS Zabbix Repository          0

Me deparei com a resposta em this thread no entanto, eu prefiro atualizá-lo ou restaurar os pacotes que ele deve ter, em vez de excluí-lo ou desativá-lo.

Como posso fazer isso? Todos os pontos de busca para sistemas que não se aplicam a mim. Aqui está a saída de yum repolist -v zabbix :

Loading "rhnplugin" plugin  Loading "security" plugin  Config time:
0.072 This system is receiving updates from RHN Classic or RHN Satellite. Looking for repo options for [main] Looking for repo options for [rhel-x86_64-server-5] Repo 'rhel-x86_64-server-5' setting option 'enabled' = '1' Repo 'rhel-x86_64-server-5' setting option 'gpgcheck' = '1' Looking for repo options for [rs-rhel-x86_64-server-5-common] Repo 'rs-rhel-x86_64-server-5-common' setting option 'enabled' = '1' Repo 'rs-rhel-x86_64-server-5-common' setting option 'gpgcheck'
= '1' Looking for repo options for [rhel-x86_64-server-vt-5] Repo 'rhel-x86_64-server-vt-5' setting option 'enabled' = '1' Repo 'rhel-x86_64-server-vt-5' setting option 'gpgcheck' = '1' Yum Version:
3.2.22 http://el5.racklabs.co.uk/repodata/repomd.xml: [Errno 14] HTTP Error 404: Not Found Trying other mirror. Error: Cannot retrieve repository metadata (repomd.xml) for repository: zabbix. Please verify its path and try again
    
por crmpicco 18.02.2014 / 12:22

1 resposta

3

O URL parece estar quebrado ou incorreto para o Zabbix.

$ curl -I http://el5.racklabs.co.uk/repodata/repomd.xml
HTTP/1.1 404 Not Found
Content-Length: 0
Content-Type: text/html; charset=UTF-8
X-Trans-Id: tx22005d1372924371a082e-00530356f9lon3
Vary: Accept-Encoding
Cache-Control: public, max-age=30
Expires: Tue, 18 Feb 2014 12:50:31 GMT
Date: Tue, 18 Feb 2014 12:50:01 GMT
Connection: keep-alive

Observe que está retornando um erro 404? Eu verificaria novamente para ter certeza de que sua instalação está correta / atual para o repo. Sua página principal para baixar um arquivo .repo está aqui, intitulada: 3 Instalação a partir de pacotes .

Mostra este comando para o EL5:

Zabbix 2.0 for RHEL5:

64-bit
$ sudo rpm -ivh http://repo.zabbix.com/zabbix/2.0/rhel/5/x86_64/zabbix-release-2.0-1.el5.noarch.rpm
32-bit
$ sudo rpm -ivh http://repo.zabbix.com/zabbix/2.0/rhel/5/i386/zabbix-release-2.0-1.el5.noarch.rpm

O repo principal também está aqui: link .

    
por 18.02.2014 / 13:53