Changes between Version 3 and Version 4 of MolgenisOnWindows


Ignore:
Timestamp:
2009-08-24T00:27:01+02:00 (15 years ago)
Author:
Morris Swertz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MolgenisOnWindows

    v3 v4  
    1313Setup a MySQL database (once per MOLGENIS instance) MOLGENIS typically uses MySQL as data storage back-end although also PostgreSQL may be used. Here the procedure for MySQL is described to create a database and give MOLGENIS permission to populate it.
    1414
     15== Open the MOLGENIS workspace using Eclipse ==
     16Most application developers use Eclipse to develop MOLGENIS applications. Therefore a ready made Eclipse project is the standard MOLGENIS distribution.
     17 1. Download the latest 'molgenis_workspace.zip' from http://molgenis.sourceforge.net[[BR]]
     18    ''Just download and unzip. A directory 'molgenisXX_workspace' is created.''
     19
     20
    1521 1. Open mysql.exe as root user.  Under windows in "C:\Program Files\MySQL Server 5.1\bin\mysql.exe - u root -p [[BR]]Type your mysql root password remembered from step 3 above!
    1622 1. Create a database 'molgenis' and give rights to the molgenis generator to change it using password 'molgenis'.[[BR]]Type: create database molgenis; grant all privileges on molgenis.* to molgenis@localhost identified by 'molgenis';  flush privileges;