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
apache下載APRjava