> CentOS > CentOS教程 >

centos rpm 安装时依赖包查找方法

命令运行之后出错:

error: Failed dependencies:
    libcrypto.so.6()(64bit) is needed by couchbase-server-2.0.0-1976.x86_64
    libssl.so.6()(64bit) is needed by couchbase-server-2.0.0-1976.x86_64

根据上面的错误提示,寻找包含 libcrypto.so.6 的安装包,运行下面的命令:

yum provides */libcrypto.so.6

发现 openssl098e-0.9.8e-17.el6.centos.2.x86_64

安装该版本的 opensll 包:

yum install openssl098e-0.9.8e-17.el6.centos.2.x86_64

这样就解析依赖包的安装,其它也是一样的方法可以查找出来.
(责任编辑:IT)