configure: error: APR not found. Please read the documentation
Actualy I had to install aprutils also… So try using: sudo apt-get install libapr1-dev libaprutil1-dev
Actualy I had to install aprutils also… So try using: sudo apt-get install libapr1-dev libaprutil1-dev
When it tells you Please read documentation it means that you should go read Apache documentation ( http://httpd.apache.org/docs/2.4/install.html ) which tells you to download the latest versions of both APR and APR-Util from Apache APR, unpack them into ./srclib/apr and ./srclib/apr-util (be sure the domain names do not have version numbers; for example, the APR … Read more
It means exactly what it says: “The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path” The library referred to is bundled into an OS specific dll (tcnative-1.dll) loaded via JNI. It allows tomcat to use OS functionalities not provided in the Java Runtime (such … Read more