Changes between Version 4 and Version 5 of OpenSpecimen HowTo Install


Ignore:
Timestamp:
12/05/15 13:25:24 (8 years ago)
Author:
Richard Bramley
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenSpecimen HowTo Install

    v4 v5  
    66
    77- Have to make install.sh and catalina.sh executable.
     8- Have to amend apache config:
     9 - Amend `loadmodule.conf` to:
     10{{{
     11...
     12# Tomcat - used for JBoss
     13#LoadModule jk_module /usr/lib64/apache2/mod_jk.so
     14
     15# Proxy to divert to the JBoss Application Server
     16LoadModule proxy_module                   /usr/lib64/apache2-prefork/mod_proxy.so
     17LoadModule proxy_http_module               /usr/lib64/apache2-prefork/mod_proxy_http.so
     18
     19}}}
     20 - Amend `httpd.cong` to
     21{{{
     22...
     23# Proxy to provide access to the JBoss Application Server
     24 ProxyPass / http://localhost:8280/ timeout=180
     25 ProxyPassReverse / http://localhost:8280/
     26 ProxyTimeout 180
     27
     28# Use mod_jk to forward to JBoss - not used now, cos it broke
     29# Include /local/apache2/etc/mod.d/mod_jk.conf
     30...
     31}}}
    832
    933== Notes from watching Nitesh upgrade our dev version