Centos:yum install libevent-devel 与 compat-libevent 冲突

use*_*805 5 installation packages logstash

我想安装 Logstash 和其他,但是当我尝试时:

# yum install libevent-devel
Run Code Online (Sandbox Code Playgroud)

我收到以下错误:

Transaction Check Error:
  file /usr/bin/event_rpcgen.py from install of libevent-devel-2.0.12-1.rhel6.i686 conflicts with file from package compat-libevent14-1.4.13-1.rhel6.i686
  file /usr/lib/libevent_core.a from install of libevent-devel-2.0.12-1.rhel6.i686 conflicts with file from package compat-libevent14-1.4.13-1.rhel6.i686
  file /usr/lib/libevent_core.so from install of libevent-devel-2.0.12-1.rhel6.i686 conflicts with file from package compat-libevent14-1.4.13-1.rhel6.i686
  file /usr/lib/libevent_extra.a from install of libevent-devel-2.0.12-1.rhel6.i686 conflicts with file from package compat-libevent14-1.4.13-1.rhel6.i686
  file /usr/lib/libevent_extra.so from install of libevent-devel-2.0.12-1.rhel6.i686 conflicts with file from package compat-libevent14-1.4.13-1.rhel6.i686
Run Code Online (Sandbox Code Playgroud)

请给我建议以解决此错误冲突。

# rpm -qi compat-libevent14
Name        : compat-libevent14            Relocations: (not relocatable)
Version     : 1.4.13                            Vendor: (none)
Release     : 1.rhel6                       Build Date: Mon 19 Sep 2011 04:50:45 PM WIT
Install Date: Fri 28 Oct 2011 10:10:03 PM WIT      Build Host: koji-sl6-i386-pg91
Group       : System Environment/Libraries   Source RPM: compat-libevent14-1.4.13-1.rhel6.src.rpm
Size        : 427200                           License: BSD
Signature   : DSA/SHA1, Mon 19 Sep 2011 04:50:45 PM WIT, Key ID 1f16d2e1442df0f8
URL         : http://monkey.org/~provos/libevent/
Summary     : Abstract asynchronous event notification library
Description :
The libevent API provides a mechanism to execute a callback function
when a specific event occurs on a file descriptor or after a timeout
has been reached. libevent is meant to replace the asynchronous event
loop found in event driven network servers. An application just needs
to call event_dispatch() and can then add or remove events dynamically
without having to change the event loop.
Run Code Online (Sandbox Code Playgroud)

lar*_*sks 5

您现有的版本compat-libevent14来自PostgreSQL yum 存储库。和之间的冲突存在一个错误。还有一个compat-libevent14libevent-devel

假设你需要PostgreSQL的库启用,您的最好的行动当然是删除compat-libevent14和安装libevent以及libevent-devel来自PostgreSQL库。这将需要删除任何需要 的包compat-libevent14,因此只有您可以决定这是否是一个合理的操作过程。

如果这不起作用,您的选择通常是 (a) 联系 PostgreSQL yum 存储库的维护人员,看看他们是否有任何计划来解决这些错误,或者 (b) 自己修复问题并推出自己的软件包。