I don't know what OS you're running, but hopefully if you're not in *nix you can translate what I say to that enviornment. Initially I had trouble with some of the tools for working with pentaho as well and had to make alterations to shell scripts to make sure they worked right. I'm going to quote to you the last few lines of my workbench.sh script, try to make sure yours emulates its behavior
:- Open workbench.sh in the workbench folder
:- Near the bottom is some code that reads (in my script):
Code:
for i in `ls drivers/*.jar`; do
CP=$CP:$i
done
#echo $CP
localdir=`echo ~/`
echo "\n"
echo $CP | sed -e 's/:/\n/g'
java -Xms100m -Xmx500m -cp "$CP" -Dlog4j.configuration=file:$localdir/.schemaWorkbench/log4j.xml mondrian.gui.Workbench
I don't remember what all I changed. I seem to remember that the original "java ...." line had:
Code:
...guration=file:~/.schemaWorkbench/log4j.xml
... but when things weren't working right, I checked the console output from workbench and it was complaining about ~/, when I realized it was trying to find something with that name and not expanding it to my home directory, so I added that 'localdir' bit in there.
I've written up a bug on this, I don't know if it has received any attention.
-Brian