Centos 7.1にfall2banをインストールできない

Centos 7.1にfall2banをインストールできない

Centos 7.1サーバーにfall2banをインストールしようとしています。

私はそうしました:

 yum install epel-release
    yum install fail2ban

しかし、いくつかのエラーメッセージが表示されます。

 yum install epel-release
    Package epel-release-7-5.noarch already installed and latest version
    Nothing to do

-----

[root@elliot ~]# yum install fail2ban
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * atomic: mirror1.34sp.com
 * base: centos.mirror.transip.nl
 * epel: ftp.nluug.nl
 * extras: centos.mirror.transip.nl
 * updates: centos.mirror.transip.nl
Resolving Dependencies
--> Running transaction check
---> Package fail2ban.noarch 0:0.9.2-1.el6 will be installed
--> Processing Dependency: python(abi) = 2.6 for package: fail2ban-0.9.2-1.el6.noarch
--> Processing Dependency: python-inotify for package: fail2ban-0.9.2-1.el6.noarch
--> Processing Dependency: gamin-python for package: fail2ban-0.9.2-1.el6.noarch
--> Running transaction check
---> Package fail2ban.noarch 0:0.9.2-1.el6 will be installed
--> Processing Dependency: python(abi) = 2.6 for package: fail2ban-0.9.2-1.el6.noarch
---> Package gamin-python.x86_64 0:0.1.10-16.el7 will be installed
--> Processing Dependency: gamin = 0.1.10-16.el7 for package: gamin-python-0.1.10-16.el7.x86_64
--> Processing Dependency: libgamin-1.so.0()(64bit) for package: gamin-python-0.1.10-16.el7.x86_64
---> Package python-inotify.noarch 0:0.9.4-4.el7 will be installed
--> Running transaction check
---> Package fail2ban.noarch 0:0.9.2-1.el6 will be installed
--> Processing Dependency: python(abi) = 2.6 for package: fail2ban-0.9.2-1.el6.noarch
---> Package gamin.x86_64 0:0.1.10-16.el7 will be installed
--> Finished Dependency Resolution
Error: Package: fail2ban-0.9.2-1.el6.noarch (epel)
           Requires: python(abi) = 2.6
           Installed: python-2.7.5-18.el7_1.1.x86_64 (@updates)
               python(abi) = 2.7
               python(abi) = 2.7
           Available: python-2.7.5-16.el7.x86_64 (base)
               python(abi) = 2.7
               python(abi) = 2.7
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest
[root@elliot ~]# 

誰でもこの問題を解決するのに役立ちますか?新しいサーバーにインストールしてみましたが、そのサーバーでは問題はありませんでした。

PS お好みでマイコンピュータにログインできます

ベストアンサー1

epel-release2つのパッケージ(EPEL 6用パッケージとEPEL 7用パッケージ)がインストールされているようです。最初のyumコマンドはepel-release-7-5インストール済みとしてマークされ、2番目のコマンドはEPEL 6(7以外)からyum取得されます。fail2ban-0.9.2-1.el6この場合、2つの結果が表示されますrpm -q epel-release。その後、yum removeEPEL 6パッケージをリリースして発行すると成功する可能性がyum clean allありますyum install fail2ban

おすすめ記事