LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   installing mondrian-- need help (https://www.linuxquestions.org/questions/linux-software-2/installing-mondrian-need-help-750173/)

nullp0inter 08-25-2009 01:38 PM

installing mondrian-- need help
 
i am trying to install mondrian on fedora 8 with tomcat 5 and the latest java releases. i can navigate to http://localhost:8080/mondrian and I see the start screen, however clicking on any of the links after that does not work. To install mondrian all I did was extract mondrian.war in the webapps/mondrian directory of tomcat. What can I do to get it working?

i found this:

Quote:

Example 1. Loading MySQL from a file on Linux

The following example is a Linux command line to create a MySQL schema called 'foodmart', and create FoodMart tables from the test dataset in the SQL scripts. First, create a foodmart database and a foodmart user:

$ mysqladmin create foodmart
$ mysql
mysql> grant all privileges on *.* to 'foodmart'@'localhost' identified by 'foodmart';
Query OK, 0 rows affected (0.00 sec)

mysql> quit
Bye

Now load the data:

$ java -cp "/mondrian/lib/mondrian.jar:/mondrian/lib/log4j.jar:/mondrian/lib/commons-logging.jar:/mondrian/lib/eigenbase-xom.jar:/mondrian/lib/eigenbase-resgen.jar:/mondrian/lib/eigenbase-properties.jar:/usr/local/mysql/mysql-connector-java-5.0.5-bin.jar"
mondrian.test.loader.MondrianFoodMartLoader
-verbose -tables -data -indexes
-jdbcDrivers=com.mysql.jdbc.Driver
-inputFile=/mondrian/demo/FoodMartCreateData.sql
-outputJdbcURL="jdbc:mysql://localhost/foodmart?user=foodmart&password=foodmart"
but the java command does not work


All times are GMT -5. The time now is 06:24 AM.