Error1:configure: error: Found APR 1.3.9. You need version 1.4.3 or newer
``` installed.由于安装的系统自带apr版本过低,,需要先升级相关软件版再重新编译.
# ./configure --with-apr=/usr/apr/ --with-java-home=/usr/java/jdk-9.0.1/ --with-ssl=yes --prefix=/usr/local/native
Error2: configure: error: Your version of OpenSSL is not compatible with this version of tcnative
Openssl不满足要求,需要升级:
# wget https://www.openssl.org/source/openssl-1.1.0g.tar.gz
# tar xvf openssl-1.1.0g.tar.gz
# cd openssl-1.1.0g
# ./config --prefix=/usr/local/openssl
# ./config -t
# make 编译
# make install 安装