CentOS: Problemas de dependência do Yum

3

Estou tentando instalar o fail2ban no CentOS, mas não consigo descobrir por que ele não será instalado:

[root@server ~]# yum install fail2ban
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.linux.duke.edu
 * epel: mirror.steadfast.net
 * extras: centosx5.centos.org
 * updates: centosc6.centos.org
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package fail2ban.noarch 0:0.8.4-29.el5 will be installed
--> Processing Dependency: shorewall for package: fail2ban-0.8.4-29.el5.noarch
--> Processing Dependency: python-inotify for package: fail2ban-0.8.4-29.el5.noarch
--> Processing Dependency: gamin-python for package: fail2ban-0.8.4-29.el5.noarch
--> Running transaction check
---> Package gamin-python.i686 0:0.1.10-9.el6 will be installed
---> Package python-inotify.noarch 0:0.9.1-1.el5 will be installed
--> Processing Dependency: python(abi) = 2.4 for package: python-inotify-0.9.1-1.el5.noarch
---> Package shorewall.noarch 0:4.0.15-1.el5 will be installed
--> Processing Dependency: shorewall-perl = 4.0.15-1.el5 for package: shorewall-4.0.15-1.el5.noarch
--> Processing Dependency: shorewall-shell = 4.0.15-1.el5 for package: shorewall-4.0.15-1.el5.noarch
--> Processing Dependency: shorewall-common = 4.0.15-1.el5 for package: shorewall-4.0.15-1.el5.noarch
--> Running transaction check
---> Package python-inotify.noarch 0:0.9.1-1.el5 will be installed
--> Processing Dependency: python(abi) = 2.4 for package: python-inotify-0.9.1-1.el5.noarch
---> Package shorewall-common.noarch 0:4.0.15-1.el5 will be installed
---> Package shorewall-perl.noarch 0:4.0.15-1.el5 will be installed
---> Package shorewall-shell.noarch 0:4.0.15-1.el5 will be installed
--> Finished Dependency Resolution
Error: Package: python-inotify-0.9.1-1.el5.noarch (epel)
           Requires: python(abi) = 2.4
           Installed: python-2.6.6-29.el6_3.3.i686 (@updates)
               python(abi) = 2.6
           Available: python-2.6.6-29.el6_2.2.i686 (base)
               python(abi) = 2.6
           Available: python26-2.6.8-2.el5.i386 (epel)
               python(abi) = 2.6
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest
[root@server ~]# 
    
por superuser 01.03.2013 / 21:38

1 resposta

1

É provavelmente devido a um conflito entre repos e / ou pacotes de um repositório desatualizado (ex. el5) no CentOS 6. Dê uma olhada em este tópico para obter boas dicas sobre onde começar a resolução de problemas.

Isso funcionou para mim, YMMV:

  1. Encontre todos os pacotes instalados com o el5 e remova-os. Você pode encontrá-los assim:

    rpm -qa|grep el5
    
  2. Remova o repositório el5

    yum repolist
    rpm -e <repo name>
    
  3. Instale o repositório correto do EPEL. Se você está no CentOS 6 de 32 bits como eu:

    rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
    
  4. Limpe o cache de yum (tente primeiro - talvez seja o suficiente):

    yum clean 
    

    ou

    yum clean expire-cache
    
por 04.03.2013 / 16:46

Tags