Woody,
It sounds like Java is not installed on your cluster. Try running this command:
java -version
It should print some kind of message, like this:
java version "1.6.0_07"
Java(TM) SE Runtime Environment (build 1.6.0_07-b06)
Java HotSpot(TM) Client VM (build 10.0-b23, mixed mode)
If it just says "command not found" then java is not installed. You should contact the system administrator, or download it from here:
...and put 'java' in your path. Or explicitly change the path of 'java' in my shellscript to wherever you install it.
It sounds like Java is not installed on your cluster. Try running this command:
java -version
It should print some kind of message, like this:
java version "1.6.0_07"
Java(TM) SE Runtime Environment (build 1.6.0_07-b06)
Java HotSpot(TM) Client VM (build 10.0-b23, mixed mode)
If it just says "command not found" then java is not installed. You should contact the system administrator, or download it from here:
...and put 'java' in your path. Or explicitly change the path of 'java' in my shellscript to wherever you install it.
Comment