Install gcc (and sisters) # yum -y groupinstall development # yum -y install httpd-devel.x86_64 Download Tomcat Connectors (mod_jk) and extract mod_jk # cd /usr/local/src # wget http://mirrors.sonic.net/apache//tomcat/tomcat-connectors/jk/tomcat-connectors-1.2.35-src.tar.gz # tar xzf tomcat-connectors-1.2.35-src.tar.gz Prepare your mod_jk configure # cd tomcat-connectors-1.2.35-src/native/ # ./buildconf.sh Compile and move mod_jk.so to apache modules # ./configure -with-apxs=`which apxs` && make && cp ... Read more...The post Compile, install and configure mod_jk1.2 appeared first on UNIX in Egypt.