ctwise
15 years agoNew Contributor
loadUI-agent.sh doesn't run on OS/X
This line:
JAVA="jre/bin/java"
Points to a non-existent Java binary on OS/X. And probably to a non-existent one on most Linux distributions as well.
If you change it to:
JAVA="`which java`"
It should work fine on any Unix-like OS that has Java in the path.
In addition, when starting up, there are numerous errors about ~/.loadui/keystore.jks not being found.
I copied the keystore.jks from the loadUI-Agent package to ~/loadui/ and the agent appeared to start up just fine
with the 'Runner started and listening on cometd!' line.
JAVA="jre/bin/java"
Points to a non-existent Java binary on OS/X. And probably to a non-existent one on most Linux distributions as well.
If you change it to:
JAVA="`which java`"
It should work fine on any Unix-like OS that has Java in the path.
In addition, when starting up, there are numerous errors about ~/.loadui/keystore.jks not being found.
I copied the keystore.jks from the loadUI-Agent package to ~/loadui/ and the agent appeared to start up just fine
with the 'Runner started and listening on cometd!' line.