Hello, tomcat version: 8.0.22 java: jdk1.8.0_05 server: Amazon Linux AMI
When deploying my web application to my production environment (detailed above), I get a message: *The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path* So I wanted to install the Apache Tomcat Native library (does this improve performance even for a web app that doesn't use SSL?) According to the documentation: http://tomcat.apache.org/native-doc/ I installed the apr-devel and openssl-devel packages with the command: yum install apr-devel openssl-devel However, I don't understand the next part of the instructions which discusses the "make && make install" command. >From where do I run this command? I searched and I could not find a "jni/native" directory. >From where do I run the "./configure --help" command and the other "./configure" commands? Thank you.