Apache2 和 DACS mod_auth_dacs.so 未定义符号:ssl_hook_Fixup
我想知道为什么当我尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
mod_auth_dacs 引用 mod_ssl 中的符号,显然必须定义这些符号
在加载 mod_auth_dacs 之前。这可以通过将 mod_ssl 静态编译到 httpd 来确保
(使用 --enable-ssl 配置 httpd 并使用“httpd -l”进行验证)并
在 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
in httpd.conf to dynamically load the mod_auth_dacs module.