在 Centos 上安装 Plone 失败:无法找到 libssl 或 openssl/ssl.h

在 Centos 上安装 Plone 失败:无法找到 libssl 或 openssl/ssl.h

我的专用服务器有 CentOS 5.5。我尝试安装 Plone,所以我基本上做了:

wget launchpad.net/plone/4.0/4.0.2/+download/Plone-4.0.2-UnifiedInstaller.tgz
tar xzf Plone-4.0.2-UnifiedInstaller.tgz
cd Plone-4.0.2-UnifiedInstaller
./install.sh zeo

我遇到了以下错误:

Unable to find libssl or openssl/ssl.h.
If you wish to build without SSL support, run install.sh again with
--without-ssl flag.
Otherwise, install your platform's openssl-dev libraries and headers
and try again.

出现此错误后,我成功安装了 openssl:

yum install openssl

我尝试再次安装 Plone。但我一直收到错误:“无法找到 libssl 或 openssl/ssl.h”。有人知道我遗漏了什么吗?

答案1

的开发文件<package>通常位于<package>-devel.Install中openssl-devel

答案2

好的,我发现了我的错误。我不仅要下载 openssl,还要下载 openssl-devel,如下所示:

yum install openssl-devel

相关内容