How to obtain Apache mod_jk connector for for RHL?

不问归期 提交于 2019-12-12 10:15:35

问题


I am looking for a mod_jk.so for Apache 2.4.6 on RHEL linux, could not find anywhere. Tried to build from source that did not go through as well. Any one knows the correct location to download or any worked solution to build?

thanks Vasu


回答1:


Here is step by step installation of mod_jk

# mkdir mod-jk

# wget http://www.eu.apache.org/dist/tomcat/tomcat-connectors/jk/tomcat-connectors-1.2.41-src.tar.gz

# tar -xf tomcat-connectors-1.2.41-src.tar.gz

# yum install -y httpd-devel gcc gcc-c++ make libtool
# cd tomcat-connectors-1.2.41-src/native
# ./configure --with-apxs=/usr/sbin/apxs
# make
# libtool --finish /usr/lib64/httpd/modules
# make install


来源:https://stackoverflow.com/questions/33381933/how-to-obtain-apache-mod-jk-connector-for-for-rhl

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!