tomcat安装apr报错解决

参考http://www.cnblogs.com/nuccch/p/7598361.html
1。no c complie
安装gcc解决

2。rm: cannot remove `libtoolT': No such file or directory
修改configure文件中
$RM "$cfgfile"

$RM -f "$cfgfile"
3.‘apr_xml_parser’没有名为‘xp’的成员
yum install expat-devel -y 解决

4.tomcat启动报错
SEVERE: Failed to initialize the SSLEngine.
org.apache.tomcat.jni.Error: 70023: This function has not been implemented on this platform

<Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="off" /> 解决
原文地址:https://www.cnblogs.com/mkdlf/p/8963613.html