Changes between Version 14 and Version 15 of MolgenisOnWindows
- Timestamp:
- 2010-09-20T15:18:56+02:00 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MolgenisOnWindows
v14 v15 11 11 1. Eclipse Integrated Development Environment http://www.eclipse.org/downloads/ [[BR]]You need to install the J2EE version (which allows you to start/stop tomcat)[[BR]] 12 12 1. (Optional) Graphviz[[BR]]MOLGENIS autogenerates documentation for your application. This requires the GraphViz package from http://www.graphviz.org/Download.php Make sure your PATH is set to run 'dot.exe' from the commandline. In windows this is set in the control panel -> System -> Environment variables. 13 14 13 == Create a database in MySQL == 15 14 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. 15 16 Open Mysql client and type: 17 18 {{{ 19 20 create database molgenis; 21 grant all privileges on molgenis.* to molgenis@localhost identified by 'molgenis'; 22 flush privileges; 23 24 25 }}} 16 26 == Open the MOLGENIS workspace using Eclipse == 17 27 Most application developers use Eclipse to develop MOLGENIS applications. Therefore a ready made Eclipse project is the standard MOLGENIS distribution.