[issue]
An incompatible version 1.1.14 of the APR based Apache Tomcat Native library, the APR required at least 1.1.17 version native
[solution]
download higher version apr and tomcat-native source package from internet
1, compile apr package first
tar xvzf apr-1.4.2.tar.gz
cd apr-1.4.2
pwd
/root/apr-1.4.2
./configure
make
make install
2 compile tomcat-native package
mkdir /usr/local/apr
tar xvzf tomcat-native-1.1.20-src.tar.gz
cd tomcat-native-1.1.20
cd jni/native
./configure --with-apr=/usr/local/apr
make
make install
3 pack a package of APRLIB_32.tgz
cd /usr/local/apr
tar cvzf APRLIB_32.tgz lib
阅读(1900) | 评论(0) | 转发(0) |