7 | | 1. Java 6 JDK http://java.sun.com/javase/downloads/ Just install the most recent standard JDK with standard options. |
8 | | 1. Tomcat >=5 web server http://tomcat.apache.org/ Rember the root password you are asked. Don't run Tomcat as a service; we will start and stop it ourself. |
9 | | 1. Mysql >=5.1 database http://dev.mysql.com/downloads/mysql/5.1.html During installation of the windows version you need to tick 'innodb'. Remember your root password. |
10 | | 1. Eclipse Integrated Development Environment http://www.eclipse.org/downloads/ You need to install the J2EE version (which allows you to start/stop tomcat) |
11 | | 1. (Optional) 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. |
12 | | 1. 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. |
13 | | 1. Open mysql.exe as root user. Under windows in "C:\Program Files\MySQL Server 5.1\bin\mysql.exe - u root -p Type your mysql root password remembered from step 3! |
14 | | 1. Create a database 'molgenis' and provide rights to the molgenis generator to change it using password 'molgenis'. Type: create database molgenis; grant all privileges on molgenis.* to molgenis@localhost identified by 'molgenis'; flush privileges; |
| 7 | 1. Java 6 JDK http://java.sun.com/javase/downloads/ [[BR]]Just install the most recent standard JDK with standard options. [[BR]] |
| 8 | 1. Tomcat >=5 web server http://tomcat.apache.org/ [[BR]]Rember the root password you are asked. Don't run Tomcat as a service; we will start and stop it ourself. [[BR]] |
| 9 | 1. Mysql >=5.1 database http://dev.mysql.com/downloads/mysql/5.1.html [[BR]]During installation of the windows version you need to tick 'innodb'. Remember your root password. [[BR]] |
| 10 | 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]] |
| 11 | 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. |
16 | | 2.3. Open the MOLGENIS workspace using Eclipse Most application developers use Eclipse to develop MOLGENIS applications. Therefore a ready made Eclipse project is the standard MOLGENIS distribution. 8. Download the latest 'molgenis_workspace.zip' from http://molgenis.sourceforge.net Just download and unzip. A directory 'molgenisXX_workspace' is created. |
| 13 | == Create a database in MySQL == |
| 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 | 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! |
| 17 | 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; |
| 18 | |
| 19 | == Open the MOLGENIS workspace in Eclipse == |
| 20 | Many application developers use Eclipse to develop MOLGENIS applications. Therefore a ready made Eclipse project is the standard MOLGENIS distribution. |
| 21 | |
| 22 | 1. Download the latest 'molgenis_workspace.zip' from http://molgenis.sourceforge.net Just download and unzip. A directory 'molgenisXX_workspace' is created. |