Différences entre les versions de « Apache2 mod Jk2 »

De BlaxWiki
Aller à la navigationAller à la recherche
(Page créée avec « <pre> mod_jk2 et Apache 2 sous Debian stable # echo "deb http://www.backports.org/debian/ woody apache2" >> /etc/apt/source.lists # apt-get update && apt-get install apache2 ... »)
 
m (a déplacé Apache2 Mod Jk2 vers Apache2 mod Jk2)
 
(Aucune différence)

Version actuelle datée du 30 janvier 2013 à 11:49

mod_jk2 et Apache 2 sous Debian stable
# echo "deb http://www.backports.org/debian/ woody apache2" >> /etc/apt/source.lists
# apt-get update && apt-get install apache2 apache2-prefork-dev apache2-threaded-dev libtool
# wget https://www.sp.fr.clara.net/files/jakarta-tomcat-connectors-jk2-src-current.tar.gz
# tar xvzf jakarta-tomcat-connectors-jk2-src-current.tar.gz
# mkdir /usr/build
# cp /usr/share/apache2/build/config_vars.mk /usr/build/
# ln -s /usr/bin/libtool /usr/build/libtool
# cd jakarta-tomcat-connectors-jk2-2.0.4-src/jk/native2/
# ./configure --with-apxs2=/usr/bin/apxs2 --with-jni
# make
# libtool --finish /usr/lib/apache2
# cp ../build/jk2/apache2/*.so /usr/lib/apache2/modules/
# echo "LoadModule? jk2_module /usr/lib/apache2/modules/mod_jk2.so" > /etc/apache2/mods-available/jk2.load
# ln -s /etc/apache2/mods-available/jk2.load /etc/apache2/mods-enabled/jk2.load
# /etc/init.d/apache2 restart

dans /var/log/apache2/error.log :
[...]
Apache/2.0.52 (Debian GNU/Linux) mod_jk2/2.0.4 configured -- resuming normal operations
[...]