作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在尝试生成一个修补过的 apache2 2.4.3 的 RPM 包
我修改了存档提供的 httpd.spec,以使用 APR 的 SVN 版本(CentOS 不提供 1.4 版):
%build
# forcibly prevent use of bundled apr, apr-util, pcre
rm -rf srclib/{apr,apr-util,pcre}
svn co http://svn.apache.org/repos/asf/apr/apr/trunk srclib/apr
./buildconf
%configure \
--enable-layout=RPM \
--libdir=%{_libdir} \
--sysconfdir=%{_sysconfdir}/httpd/conf \
--includedir=%{_includedir}/httpd \
--libexecdir=%{_libdir}/httpd/modules \
--datadir=%{contentdir} \
--with-installbuilddir=%{_libdir}/httpd/build \
--enable-mpms-shared=all \
--with-included-apr \
--enable-suexec --with-suexec \
--with-suexec-caller=%{suexec_caller} \
--with-suexec-docroot=%{contentdir} \
--with-suexec-logfile=%{_localstatedir}/log/httpd/suexec.log \
--with-suexec-bin=%{_sbindir}/suexec \
--with-suexec-uidmin=500 --with-suexec-gidmin=100 \
--enable-pie \
--with-pcre \
--with-libxml2 \
--enable-mods-shared=all \
--enable-ssl --with-ssl --enable-socache-dc --enable-bucketeer \
--enable-case-filter --enable-case-filter-in \
--enable-session-crypto --with-crypto \
--enable-ldap --enable-authnz-ldap --with-ldap \
--disable-imagemap
--with-included-apr \
--enable-ldap --enable-authnz-ldap --with-ldap \
rpmbuild -ba ~/rpmbuild/SPECS/httpd.spec
checking for ldap support in apr/apr-util... no
configure: WARNING: apr/apr-util is compiled without ldap support
checking whether to enable mod_authnz_ldap... configure: error: mod_authnz_ldap has been requested but can not be built due to prerequisite failures
--with-ldap
这实际上是存在的。
最佳答案
我在 Ubuntu 13.10 中配置 Apache2 httpd-2.4.7 时遇到了同样的问题。您应该确保已安装 OpenLDAP。在 Ubuntu 中:
sudo apt-get install sladp ldap-utils
sudo apt-cache search openldap #found libldap2-dev
sudo apt-get install libldap2-dev
rpm -qa | grep ldap
./configure --prefix=/usr/local/apache --sysconfdir=/etc/apache --enable-so --with-ldap --enable-ssl --with-included-apr --with-pcre=/usr/local/pcre
关于apache - 使用 mod_authnz_ldap 和 apr/apr-util 构建 apache2 2.4.3 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12602579/
我正在使用 Apache 2.4 和模块 mod_authnz_ldap 来授予或授权组中的用户访问某些页面。这是我目前的配置。这工作正常: AuthLDAPUrl "ldap://mylda
我们使用 LDAP 通过 Apache httpd 进行 Subversion 访问。我们最初让所有用户使用以下命令访问我们的所有 Subversion 存储库: DAV svn S
过去几天我一直在尝试在虚拟主机页面上进行 AD 身份验证,但没有成功。帮助... CentOS 7 Apache 2.4.6 mod_ldap 和 mod_authnz_ldap 已安装并加载
我目前正在尝试生成一个修补过的 apache2 2.4.3 的 RPM 包 我修改了存档提供的 httpd.spec,以使用 APR 的 SVN 版本(CentOS 不提供 1.4 版): %buil
我是一名优秀的程序员,十分优秀!