英文:
mod_jk module on IBM HTTP Server failing with syntax error
问题
我们尝试将mod_jk模块添加到IBM HTTP服务器中,但遇到语法错误。我们尝试了多个在互联网上找到的配置,但都没有成功。
以下是httpd.conf文件中配置的截图:

以下是错误的截图:

我们尝试了绝对路径和相对路径。它显示mod_jk.so文件格式不正确。我们尝试从以下链接下载文件:
我的问题是,mod_jk在IBM HTTP服务器中受支持吗?如果是的话,我们在哪里可以找到适用于HTTD版本9.0.5的已编译文件?
提前致谢。
英文:
We are trying to add mod_jk module to IBM http server but failing with syntax error. We tried multiple configuration available on internet but no luck.
Below is screenshot for configuration in httpd.conf file

Below is screenshot of error

We tried both absolutely path and relative path. It says mod_jk.so file is in incorrect format. We tried to download file from
My question is mod_jk Mule supported in IBM HTTP Server, if yes, where can we get its compiled file for HTTD version 9.0.5
Thanks in advance.
答案1
得分: 1
错误看起来像是AIX系统报告了一个共享库加载错误,但是你链接的是一个Linux模块。你不能在AIX程序中使用Linux本地库。
此外,你不应该使用IHS + mod_jk。如果你使用mod_jk和任何需要它的东西,这种组合是完全不受支持的。只需使用Apache即可。
英文:
The error looks like an AIX system reporting a shared library load error, but you linked to a linux module. You can't use a linux native library in an AIX program.
Further, you shouldn't use IHS + mod_jk. It's completely unsupported when using it with anything that would require mod_jk. Just use Apache.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。


评论