TOMCAT 6.0 安装 APR for linux x86_64

Requirements:
APR 1.2+ development headers (libapr1-dev package)
OpenSSL 0.9.7+ development headers (libssl-dev package)
JNI headers from Java compatible JDK 1.4+
GNU development environment (gcc, make)
The wrapper library sources are located in the Tomcat binary bundle, in the bin/tomcat-native.tar.gz archive. Once the build environment is installed and the source archive is extracted, the wrapper library can be compiled using (from the folder containing the configure script):
./configure && make && make install


#apr-1.3.8.tar.gz
#tar zxvf apr-1.3.8.tar.gz
#cd apr-1.3.8
#./configure
#make
#make install
安装在/usr/local/apr

#apr-util-1.3.9.tar.gz
#tar zxvf apr-util-1.3.9.tar.gz
#cd apr-util-1.3.9   
#./configure --with-apr=/usr/local/apr   
#make  
#make install  
安装在/usr/local/apr/lib

安装 tomcat-native
#cd /usr/local/tomcat-6.0.20/bin   
#tar zxvf tomcat-native.tar.gz   
#cd tomcat-native-src/jni/native   
#./configure --with-apr=/usr/local/apr --with-java-home=/usr/java/jdk1.6.0_16   
#make  
#make install  

#cd /usr/local/tomcat-6.0.20/bin
#tar zxvf tomcat-native.tar.gz
#cd tomcat-native-src/jni/native
#./configure --with-apr=/usr/local/apr --with-java-home=/usr/java/jdk1.6.0_11
#make
#make install

设置 apr 的环境变量:
#vi /etc/profile   
#export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/apr/lib   
#source /etc/profile  

启动 tomcat 后, 看日志:
bin/startup.sh   
head logs/catalina.out

你可能感兴趣的:(tomcat,apr,native)