Apache2 和 DACS mod_auth_dacs.so 未定义符号:ssl_hook_Fixup

发布于 2025-01-08 01:07:42 字数 231 浏览 0 评论 0原文

我想知道为什么当我尝试在 httpd.conf 中加载 mod_auth_dacs.so 时给出此错误“未定义符号:ssl_hook_Fixup”

我根据 DACS 安装指南安装了所有内容,并且 apache2 正在使用 openssl,我可以通过以下方式访问我的页面https 协议。

DACS 安装指南中简要提到了该错误,但这确实没有多大帮助。以前有人遇到过这个问题吗?

任何帮助都会很棒,谢谢

I am wondering why is it giving this error "undefined symbol: ssl_hook_Fixup" when I am trying to load mod_auth_dacs.so in httpd.conf

I installed everything accordingly to the DACS installation guide and apache2 is working with openssl and I can access my pages through https protocol.

There's a brief mention of the error in the DACS installation guide but it really isnt much of a help. Anyone experienced with this problem before?

Any help would be great, thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少跟Wǒ拽 2025-01-15 01:07:42

mod_auth_dacs 引用 mod_ssl 中的符号,显然必须定义这些符号
在加载 mod_auth_dacs 之前。这可以通过将 mod_ssl 静态编译到 httpd 来确保
(使用 --enable-ssl 配置 httpd 并使用“httpd -l”进行验证)并

 LoadModule auth_dacs_module modules/mod_auth_dacs.so

在 httpd.conf 中使用动态加载 mod_auth_dacs 模块。

mod_auth_dacs references symbols in mod_ssl, and apparently those symbols must be defined
before mod_auth_dacs is loaded. This can be ensured by statically compiling mod_ssl into httpd
(configure httpd with --enable-ssl and verify with "httpd -l") and using

 LoadModule auth_dacs_module modules/mod_auth_dacs.so

in httpd.conf to dynamically load the mod_auth_dacs module.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文