0

I have a problem trying to install mondrian. The installer is a .jar file. If I double clik it, a windows console opens, but it closes immediatly. If I try with the console and I write "java -jar mondrian", I get "Error: Unable to access jarfile mondrian".

I'm using Windows 8.1.

Thanks for your help.

vjsp
  • 1
  • 1

1 Answers1

0

You need the full filename of the jar file you are trying to execute

java -jar mondrian.jar

Regardless, I think you should really be referring to the Mondrian installation guide, from which you'll see that the command you need to enter is different from what you are attempting to do.

Catchwa
  • 5,845
  • 4
  • 31
  • 57
  • Thanks, but If I try that way I get "no main manifest attribute, in mondrian.jar". – vjsp Jun 02 '14 at 23:12
  • Which is a step in the right direction, because at least then the jar is being examined, whereas previously it could not be located. – Jason Jun 02 '14 at 23:14
  • @vjsp - see the link I added. I think you should be following the installation guide more closely. – Catchwa Jun 02 '14 at 23:24