...
Now we need to tell Spoon that we want to use a different version of xulrunner than the default. Open <data-integration folder>/spoon.sh in a text editor like gedit.
Code Block |
---|
$ gedit ~/data<data-integration-home>/spoon.sh |
modify the MOZILLA_FIVE_HOME setting to the new location of the 1.9.2 version of xulrunner, replace:
Code Block | ||
---|---|---|
| ||
MOZILLA_FIVE_HOME=$(find /usr/lib -maxdepth 1 -name xulrunner-[0-9]* | head -1)
|
with:
Code Block | ||
---|---|---|
| ||
MOZILLA_FIVE_HOME=$HOME/xulrunner-1.9.2 ... #also add a VM argument to the OPT var: -Dorg.eclipse.swt.browser.XULRunnerPath=$MOZILLA_FIVE_HOME OPT="$OPT $PENTAHO_DI_JAVA_OPTIONS -Dorg.eclipse.swt.browser.XULRunnerPath=$MOZILLA_FIVE_HOME -Djava.library.path=$LIBPATH -DKETTLE_HOME=$KETTLE_HOME -DKETTLE_REPOSITORY=$KETTLE_REPOSITORY -DKETTLE_USER=$KETTLE_USER -DKETTLE_PASSWORD=$KETTLE_PASSWORD -DKETTLE_PLUGIN_PACKAGES=$KETTLE_PLUGIN_PACKAGES -DKETTLE_LOG_SIZE_LIMIT=$KETTLE_LOG_SIZE_LIMIT" |
Now, we need to install a newer version of sqlite. You can download the sqlite bits from:
...
Launch Spoon:
Code Block |
---|
cd ~/data<data-integration-home> ./spoon.sh |