Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/linux/25.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Linux 如何使用安装openssl从源代码重新配置Apache?_Linux_Openssl_Centos - Fatal编程技术网

Linux 如何使用安装openssl从源代码重新配置Apache?

Linux 如何使用安装openssl从源代码重新配置Apache?,linux,openssl,centos,Linux,Openssl,Centos,在linux Centos 5 64位服务器中,我从源代码编译了webserver Apache 2.4.6版 下面是我使用的配置说明 ./configure --enable-mods-shared=reallyall --with-suexec-caller=apache --enable-cache --enable-cache-disk --with-ldap --enable-ldap --enable-authnz-ldap 现在,我必须使用新安装的openssl版本(1.0.1e

在linux Centos 5 64位服务器中,我从源代码编译了webserver Apache 2.4.6版

下面是我使用的配置说明

./configure --enable-mods-shared=reallyall --with-suexec-caller=apache --enable-cache --enable-cache-disk --with-ldap --enable-ldap --enable-authnz-ldap
现在,我必须使用新安装的openssl版本(1.0.1e-fips)重新编译Web服务器Apache

使用服务器上安装的当前版本的openssl重新配置Apache的正确语法是什么


非常感谢。

很遗憾,您没有提到如何安装OpenSSL 1.0.1e-fips(以及安装位置),因此无法回答此问题。基于1.0.1e-fips,我发现您可能使用了我的EPEL5 RPM包(更重要的是:
openssl101e-devel
)。如果是,就跑

export CFLAGS="$CFLAGS -I/usr/include/openssl101e"
export CPPFLAGS="$CPPFLAGS -I/usr/include/openssl101e"
export LDFLAGS="$LDFLAGS -L/usr/include/openssl101e"
/配置
之前。否则,您首先需要披露有关OpenSSL 1.0.1e-fips安装/更新的更多详细信息