
I installed in the following order as suggested by Peter Boncz in his previous mail: http://monetdb.cwi.nl/downloads/sources/Aug2009-SP1/MonetDB-1.32.2.tar.gz http://monetdb.cwi.nl/downloads/sources/Aug2009-SP1/MonetDB-client-1.32.2.ta... http://monetdb.cwi.nl/downloads/sources/Aug2009-SP1/MonetDB5-server-5.14.2.t... http://monetdb.cwi.nl/downloads/sources/Aug2009-SP1/MonetDB-SQL-2.32.2.tar.g... Every time after installing previous library I put its "bin" dir in the $PATH so that for the next one's installation it can pick up the required dependency libraries from the earlier one's installation. E.g. $ tar -xzf MonetDB-1.32.2.tar.gz $ cd MonetDB-1.32.2 $ ./configure --prefix=/path/to/MonetDB $ make install $ export PATH=$PATH:/path/to/MonetDB/bin $ tar -xzf MonetDB-client-1.32.2.tar.gz $ cd MonetDB-client-1.32.2 $ ./configure --prefix=/path/to/MonetDB-client $ make install $ export PATH=$PATH:/path/to/MonetDB-client/bin $ tar -xzf MonetDB5-server-5.14.2.tar.gz $ cd MonetDB5-server-5.14.2 $ ./configure --prefix=/path/to/MonetDB5 $ make install $ export PATH=$PATH:/path/to/MonetDB5/bin $ tar -xzf MonetDB-SQL-2.32.2.tar.gz $ cd MonetDB-SQL-2.32.2 $ ./configure --prefix=/path/to/MonetDB-SQL $ make install $ export PATH=$PATH:/path/to/MonetDB-SQL/bin And then I ran the other commands I already mentioned below (e.g. merovingian etc). There were no error messages in the "make install" of any of the 4 packages I have listed above. Could you please help me understand what might be going wrong? Thanks. Medha On Wed, Oct 7, 2009 at 4:42 AM, Fabian Groffen <Fabian.Groffen@cwi.nl> wrote:
On 06-10-2009 22:14:22 -0400, Medha Atre wrote:
$ monetdb start rdf *starting 'rdf' failed: database 'rdf' has inconsistent state (running but dead), review merovingian's logfile for any peculiarities*
If I do "monetdb status" it shows me "rdf" running and health 100% but then why this error message? Also if I try connecting to the rdf database using mclient, it says --
$ mclient -lsql --database=rdf !MALException:setScenario:Scenario not initialized 'sql'
2009-10-06 15:47:50 MSG rdf[12197]: !MALException:malInclude:could not open file: sql
How did you install MonetDB/SQL? This indicates something went wrong with the installation.