From 0c35959b8518d2390855dc70279f9b679775a5ab Mon Sep 17 00:00:00 2001 From: Nayan Ambali Date: Wed, 3 Jul 2013 12:04:16 +0530 Subject: [PATCH] Update README.md --- README.md | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index ed5ccf6..c15f3ca 100644 --- a/README.md +++ b/README.md @@ -1,31 +1,36 @@ Move To Mifosx -============== +-------------- A migration tool to migrate data from Mifos 2.x to MifosX -Installing Kettle +####Installing Kettle You can download Pentaho Data Integration (PDI), also known as Kettle, from Sourceforge.net. Go to http://www.pentaho.com/download/ if you are looking for Pentaho Enterprise Edition (EE) of PDI. -Prerequisites +####Prerequisites Kettle requires the Sun Java Runtime Environment (JRE) version 1.5 (also called 5.0 in some naming schemes) or newer. You can obtain a JRE for free from http://java.sun.com/. -Installation +####Installation PDI does not require installation. Simply unpack the zip file into a folder of your choice. On Unix-like operating systems, you will need to make the shell scripts executable by using the chmod command: cd Kettle chmod +x *.sh -Spoon Introduction + +####Spoon Introduction Spoon is the graphical tool with which you design and test every PDI process. The other PDI components execute the processes designed with Spoon, and are executed from a terminal window. -Starting Spoon +####Starting Spoon Start Spoon by executing spoon.bat on Windows, or spoon.sh on Unix-like operating systems. As soon as Spoon starts, a dialog window appears asking for the repository connection data. Click the No Repository button. -Configure source and destination database +#### Configure source and destination database + Navigate to simple-jndi folder +``` cd /..\data-integration\simple-jndi\ +``` And append below line to jdbc.properties file and save it. +``` SourceDB/type=javax.sql.DataSource SourceDB/driver=org.gjt.mm.mysql.Driver SourceDB/url=jdbc:mysql://000.00.00.00:3306/mifos?useUnicode=true&characterEncoding=UTF-8 @@ -36,3 +41,4 @@ DestinationDB/driver=org.gjt.mm.mysql.Driver DestinationDB/url=jdbc:mysql://localhost:3306/mifosx?useUnicode=true&characterEncoding=UTF-8 DestinationDB/user=root DestinationDB/password=**** +```