Changes between Version 3 and Version 4 of MolgenisOnWindows
- Timestamp:
- 2009-08-24T00:27:01+02:00 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MolgenisOnWindows
v3 v4 13 13 Setup 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. 14 14 15 == Open the MOLGENIS workspace using Eclipse == 16 Most 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 15 21 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! 16 22 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;