| Apache Tomcat and APR in a Linux Server |
|
When you do a fresh installation of Apache Tomcat, you'll notice the following error message in the logfile:
org.apache.catalina.core.AprLifecycleListener init APR stands for Apache Runtime Portable Project which provides a consistent API to the native environment where the application server is running (either Linux, Windows, etc). This means that Tomcat itself contains this native library, but it is disabled by default, since you need to install first the APR.
It is recommended to perform the following steps as root or a sudoer user, since you need access to common and restricted resources in the server Then, download the APR library from Apache's site and install it in /usr/local/src This will install the APR libraries at /usr/local/apr. After this, install Tomcat's native library:
Comments (0) |
