...
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:
64bit : http://pkgs.org/centos-6-rhel-6/atomic-x86_64/sqlite-3.7.0.1-1.el6.art.x86_64.rpm/download/
32bit : http://pkgs.org/centos-6-rhel-6/atomic-i386/sqlite-3.7.0.1-1.el6.art.i686.rpm/download/
Install the 3.7 version of sqlite:
Code Block |
---|
sudo rpm -Uvh sqlite-3.7.0.1-1.el6.art.<osArch>.rpm
sqlite3 --version
|
Your sqlite version should now be 3.7.0.1
Launch Spoon:
Code Block |
---|
cd <data-integration-home>
./spoon.sh
|