Changes between Version 14 and Version 15 of MolgenisOnWindows


Ignore:
Timestamp:
2010-09-20T15:18:56+02:00 (14 years ago)
Author:
Morris Swertz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MolgenisOnWindows

    v14 v15  
    1111 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]]
    1212 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 
    1413== Create a database in MySQL ==
    1514Setup 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
     16Open Mysql client and type:
     17
     18{{{
     19
     20create database molgenis;
     21grant all privileges on molgenis.* to molgenis@localhost identified by 'molgenis';
     22flush privileges;
     23
     24
     25}}}
    1626== Open the MOLGENIS workspace using Eclipse ==
    1727Most application developers use Eclipse to develop MOLGENIS applications. Therefore a ready made Eclipse project is the standard MOLGENIS distribution.