Pradeep Ku. Panda | 8 May 09:02

Help for Installing mifos in Ubuntu

Hi All,
  we use the mifos_V1.3.0 in windows. And also check its functionality by installing it in our local system.
Now we plan to install the mifos in Ubuntu. And check its functionality. So we also install the Ubuntu 9.10 in our system.
But we are not able to got the required software for installing mifos in Ubuntu.
So if any one use mifos in Ubuntu. Kindly provide us the linking where we freely download the required software for installing the mifos in our local system.
And also guide us how to achieve the goal.

--
Thanks & Regards
_________________
Pradeep Kumar Panda.

MIS Executive
Adhikar Microfinance Pvt. Ltd.
Corporate Office
Bhubaneshwar, Orissa.
Cell: 09338430676
Web: www.adhikarindia.org
------------------------------------------------------------------------------

Graeme Ruthven | 8 May 11:23
Picon

Re: Help for Installing mifos in Ubuntu

Hi Pradeep

 

I suggest that this discussion is kept in the Users list.

 

Can you more specific about what required software you are not able to get?

 

Apart from the Mifos application itself, which you will download from mifos.org, most of the software is installed with Ubuntu’s package managed (which is Debian Linux’s apt-get.

 

Regards

Graeme

 

 

From: Pradeep Ku. Panda [mailto:pradeep.mis-jupBDbp2ydTtjTlSAa+CFQ@public.gmane.org]
Sent: Saturday, 8 May 2010 7:02 p.m.
To: Developer; mifos-functional-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org; A good place to start for users or folks new to Mifos.
Subject: [Mifos-users] Help for Installing mifos in Ubuntu

 

Hi All,

  we use the mifos_V1.3.0 in windows. And also check its functionality by installing it in our local system.

Now we plan to install the mifos in Ubuntu. And check its functionality. So we also install the Ubuntu 9.10 in our system.

we also go through the link http://www.mifos.org/developers/wiki/MifosUbuntuInstall?searchterm=+ubuntu " for installation.

But we are not able to got the required software for installing mifos in Ubuntu.

So if any one use mifos in Ubuntu. Kindly provide us the linking where we freely download the required software for installing the mifos in our local system.

And also guide us how to achieve the goal.

------------------------------------------------------------------------------

_______________________________________________
Mifos-users mailing list
Mifos-users@...
https://lists.sourceforge.net/lists/listinfo/mifos-users
Biju K.A | 8 May 12:06
Picon

Re: Help for Installing mifos in Ubuntu

Hi Pradeep Kumar,

its very simple

first of all you have to make sure that
1) tomcat or any web server is running or not
2) mysql5.x working currectly or not

otherwise you have to configure it

i recently install mifos1.4 in ubunto 9.04.
i briefly tell what i did


download mysql-advanced-gpl-5.1.45-linux-i686-glibc23.tar.gz version from the net

downloand apache-tomcat-6.0.24.tar.gz from apache web site

unzip tomcat and mysql using this command:

tar   -xvf   apache-tomcat-6.0.24.tar.gz
tar   -xvf    mysql-advanced-gpl-5.1.45-linux-i686-glibc23.tar.gz

rename it, if you want, using this command:

mv apache-tomcat-6.0.24.tar.gz tomcat6

mv mysql-advanced-gpl-5.1.45-linux-i686-glibc23.tar.gz mysql_5145




follow the steps bellow


  1. install java 1.6 JDK :
    sudo apt-get install sun-java6-jdk

  2. install mysql 5.1.4.5

  3. create a file named mifos.cnf in /etc/mysql/conf.d/ and put in it:
    [mysqld]

# due to issue 1513 lower_case_table_names = 1 # optional, but saves disk space

    innodb_file_per_table

Restart the database for the new settings to take effect.

sudo /etc/init.d/mysql restart
  1. Create mifos databases:
    mysql> CREATE DATABASE mifos;
  2. grant permissions to user 'mifos' (doing these grants more than once has no effect). If you choose a different user name and password, adjust these instructions accordingly:
    mysql> GRANT ALL on mifos.* to 'mifos' <at> 'localhost' identified by 'mifos';

mysql> GRANT ALL on mifostest.* to 'mifos' <at> 'localhost' identified by 'mifos';

    mysql> FLUSH PRIVILEGES;

  1. create tables and values using the script given with Mifos version

  2. Set up environment variables for Tomcat:
    export CATALINA_HOME=$HOME/tomcat6

    export JAVA_HOME=/usr/lib/jvm/java-6-sun

  3. change the database setting in Mifos

  4. copy mifos.war to the webapps directory of tomcat

  5. start Tomcat. Execute the following:
    cd /tmp $HOME/tomcat6/bin/startup.sh

  6. Visit http://localhost:8080/mifos/ in a browser to use Mifos. (username: "mifos", password: "testmifos").

    


Note :The environment variables may lost if you restart the system.

so you add this path to the .profile file of your home directory,

add this lines to the .profile using any  editor


export CATALINA_HOME=$HOME/tomcat6

export JAVA_HOME=/usr/lib/jvm/java-6-sun


starting mysql automatically in startup by editing file /etc/rc.local and adding the below line at the last before the line “exit 0”

/bin/sh -c 'cd /usr/local/mysql; ./bin/mysqld_safe --user=mysql &'


Regards
Biju



On Sat, May 8, 2010 at 12:32 PM, Pradeep Ku. Panda <pradeep.mis-jupBDbp2ydTtjTlSAa+CFQ@public.gmane.org> wrote:
Hi All,
  we use the mifos_V1.3.0 in windows. And also check its functionality by installing it in our local system.
Now we plan to install the mifos in Ubuntu. And check its functionality. So we also install the Ubuntu 9.10 in our system.
But we are not able to got the required software for installing mifos in Ubuntu.
So if any one use mifos in Ubuntu. Kindly provide us the linking where we freely download the required software for installing the mifos in our local system.
And also guide us how to achieve the goal.

--
Thanks & Regards
_________________
Pradeep Kumar Panda.

MIS Executive
Adhikar Microfinance Pvt. Ltd.
Corporate Office
Bhubaneshwar, Orissa.
Cell: 09338430676
Web: www.adhikarindia.org

------------------------------------------------------------------------------



------------------------------------------------------------------------------


Gmane