From 319ace15bd096ad5b2bdbb5821dc3235368e4793 Mon Sep 17 00:00:00 2001
From: j2blake
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