Changes between Version 2 and Version 3 of Opal HowTo Install


Ignore:
Timestamp:
06/30/15 12:44:00 (9 years ago)
Author:
Richard Bramley
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Opal HowTo Install

    v2 v3  
    55See: [[http://wiki.obiba.org/display/OPALDOC/Opal+Installation+Guide]]
    66
     7== Process
     8
     9We followed the `Installation of Opal Zip distribution` instructions that installed Opal from a zip file.
     10
     111. Download Opal distribution into the `/local/` directory
     121. Unzip the Opal distribution. Note that the zip file contains a root directory named `opal-server-{version}`.
     131. Create an Opal home directory (to facilitate subsequent upgrades) using the command `mkdir opal-home`.
     141. Create a symbolic link to the Opal server directory, using the command `ln -s opal-server-{version} opal_server`
     151. Copy the `conf` directory from the server directory into the home directory, using the command `cp -r opal-server/conf opal-home`.
     161. Create a script called `start_opal.sh` in the `/local/` directory containing the following:
     17
     18{{{
     19#!/usr/bin/env bash
     20
     21echo "Starting Opal"
     22
     23export JAVA_OPTS="-Xmx2G -XX:-UseCompressedClassPointers"
     24export OPAL_HOME="/local/opal-home"
     25
     26/local/opal-server/bin/opal
     27
     28echo "Ended"
     29}}}
     30
     31The java options are:
     32 -Xmx2G:: increase the memory allocated to Java to 2GB
     33 -XX:-UseCompressedClassPointers:: Do not compress class pointers (because Opal creates too many classes?)
     34
    735[[BackLinks]]