From ed3e341968bda2c4d496b8d151b88fb88c76eefa Mon Sep 17 00:00:00 2001 From: Daniel Gerhardt <code@dgerhardt.net> Date: Sat, 7 Jul 2018 20:54:46 +0200 Subject: [PATCH] Revise required package for libapr in installation guide libapr alone is not sufficiant. libtcnative is required for Tomcat. --- src/site/markdown/installation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/site/markdown/installation.md b/src/site/markdown/installation.md index 755cf4a3d..de3095b3a 100644 --- a/src/site/markdown/installation.md +++ b/src/site/markdown/installation.md @@ -55,11 +55,11 @@ In order to build up a full featured server installation you have to install at * Apache HTTP Server 2.4.5 (or newer) with builtin modules `mod_proxy`, `mod_proxy_http`, `mod_proxy_wstunnel` and `mod_rewrite` Additionally, you need Python 2.7 (3.0 or newer will not work) to run the "Setup Tool". -We further recommend installing the "Apache Portable Runtime Library" (libapr1) for improved performance. +We further recommend installing the "Apache Portable Runtime (APR) based Native library for Tomcat" (libapr and libtcnative) for improved performance. Most of this software can easily be installed on Linux systems using the distribution's package manager: -* Debian: `# apt-get install -t jessie-backports nginx openjdk-8-jre && apt-get install libapr1 tomcat8` -* Ubuntu: `# sudo apt-get install couchdb libapr1 nginx openjdk-8-jre tomcat8` +* Debian: `# apt-get install -t jessie-backports nginx openjdk-8-jre && apt-get install libtcnative-1 tomcat8` +* Ubuntu: `# sudo apt-get install couchdb libtcnative-1 nginx openjdk-8-jre tomcat8` While running ARSnova without a reverse proxy is possible, we do not recommend to do so. A reverse proxy significantly simplifies the setup of HTTPS and allows running Websocket connections over the default HTTP(S) port. -- GitLab