From 319ace15bd096ad5b2bdbb5821dc3235368e4793 Mon Sep 17 00:00:00 2001 From: j2blake Date: Mon, 2 Jul 2012 17:08:15 +0000 Subject: [PATCH] NIHVIVO-3865 Change the instructions. setenv.bat (Windows) doesn't require or tolerate quotes around the value. --- doc/setting_up_orng.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/setting_up_orng.html b/doc/setting_up_orng.html index 57168d97..15230ec0 100644 --- a/doc/setting_up_orng.html +++ b/doc/setting_up_orng.html @@ -159,12 +159,12 @@

Here is an example of the setenv.sh file, showing only the Shindig-ORNG requirements:

export CLASSPATH=/usr/local/vivo/data/shindig/conf
-export CATALINA_OPTS='-Dshindig.host=localhost -Dshindig.port=8080'
+export CATALINA_OPTS="-Dshindig.host=localhost -Dshindig.port=8080"

Here is the equivalent file for an installation in Windows.

set CLASSPATH=C:\vivo\data\shindig\conf
-set CATALINA_OPTS='-Dshindig.host=localhost -Dshindig.port=8080'
+set CATALINA_OPTS=-Dshindig.host=localhost -Dshindig.port=8080

This assumes that your setenv file was empty before starting this process, @@ -172,12 +172,12 @@ set CATALINA_OPTS='-Dshindig.host=localhost -Dshindig.port=8080' In fact, it's more common for the setenv file to contain other parameters besides those used for Shindig-ORNG. In that case, it might look more like this:

export CLASSPATH=/usr/local/vivo/data/shindig/conf
-export CATALINA_OPTS='-Dshindig.host=localhost -Dshindig.port=8080 -Djava.awt.headless=true -Xms1024m -Xmx1024m -XX:MaxPermSize=128m'
+export CATALINA_OPTS="-Dshindig.host=localhost -Dshindig.port=8080 -Djava.awt.headless=true -Xms1024m -Xmx1024m -XX:MaxPermSize=128m"

Or, for Windows:

set CLASSPATH=C:\vivo\data\shindig\conf
-set CATALINA_OPTS='-Dshindig.host=localhost -Dshindig.port=8080 -Djava.awt.headless=true -Xms1024m -Xmx1024m -XX:MaxPermSize=128m'
+set CATALINA_OPTS=-Dshindig.host=localhost -Dshindig.port=8080 -Djava.awt.headless=true -Xms1024m -Xmx1024m -XX:MaxPermSize=128m

I.iv Configure VIVO