Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Installation the native library on Ubuntu server with:</p> <pre><code>sudo apt-get install libtcnative-1 </code></pre> <p>If that does not work tomcat-native needs to be installed</p> <ol> <li><p>Install Oracle java7:</p> <ul> <li>sudo add-apt-repository ppa:webupd8team/java</li> <li>sudo apt-get update</li> <li>sudo apt-get install oracle-java7-installer</li> <li>sudo apt-get install oracle-java7-set-default</li> </ul></li> <li><p>Install tomcat apr:</p> <ul> <li>wget <a href="http://apache.mirror.anlx.net//apr/apr-1.5.0.tar.gz" rel="nofollow">http://apache.mirror.anlx.net//apr/apr-1.5.0.tar.gz</a></li> <li>tar zxvf apr-1.5.0.tar.gz</li> <li>rm apr-1.5.0.tar.gz</li> <li>cd apr-1.5.0 * </li> <li>sudo ./configure</li> <li>sudo make</li> <li>sudo make install</li> <li>export LD_LIBRARY_PATH='$LD_LIBRARY_PATH:/usr/local/apr/lib'</li> </ul></li> <li><p>Install tomcat tomcat-native:</p> <ul> <li>wget <a href="http://mirrors.ukfast.co.uk/sites/ftp.apache.org//tomcat/tomcat-connectors/native/1.1.29/source/tomcat-native-1.1.29-src.tar.gz" rel="nofollow">http://mirrors.ukfast.co.uk/sites/ftp.apache.org//tomcat/tomcat-connectors/native/1.1.29/source/tomcat-native-1.1.29-src.tar.gz</a></li> <li>tar zxvf tomcat-native-1.1.29-src.tar.gz</li> <li>rm tomcat-native-1.1.29-src.tar.gz</li> <li>cd tomcat-native-1.1.29-src/jni/native</li> <li>JAVA_HOME=/usr/lib/jvm/java-7-oracle</li> <li>sudo ./configure --with-apr=/usr/local/apr --with-java-home=$JAVA_HOME</li> <li>sudo make</li> <li>sudo make install</li> </ul></li> </ol>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload