Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

(Adding this page to clarify install instructions that should eventually live in the INSTALL guide.

See also TBD MIFOS-4769.

To run Mifos in Jetty - 

...

  1. Copy the mifos.war you downloaded to JETTY_HOME/webapps. If the
    following temporary directories directory exist, delete themit: JETTY_HOME/webapps/mifos
  1. Empty work directory: Make sure that JETTY_HOME/work exists, but is empty e.g. via:
    Code Block
    cd JETTY_HOME; rm -rf work; mkdir work
  2. Start Jetty from the jetty directory:
    Code Block
     java -Xms1024M -Xmx1024M -XX:MaxPermSize=256m -jar start.jar  
    (or use the jetty.sh or jetty-cygwin.sh in bin/ - although they seem to work less well than the simple java -jar start.jar, under Windows at least)
  3. tbd - configuration settings for unique port, etc?

...