Changes between Version 4 and Version 5 of Installing


Ignore:
Timestamp:
Oct 5, 2009, 6:04:22 PM (15 years ago)
Author:
Gavin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Installing

    v4 v5  
    11== Install ==
    22
    3 This topic is still on our TODO list, please see the online [http://democo.gnumims.com Demo]
     3There are two ways to get gnuMims running:
     4 1. Download the [http://www.gnumims.org/downloads/gnuMims.war war] file and deploy to a Java Servlet (see bellow).
     5 1. Download the source code, build and run with Grails.
     6
     7Note: there is an online [http://democo.gnumims.com Demo]
    48
    59'''Requirements'''
    610
    7  * Java servlet, we use tomcat.
    8  * Mysql - most databases can be used but the war is built for myslq.
    9  * See the the DeveloperStartPage if you want to generate a custom war.
     11 * Java servlet, we currently use tomcat5.5.
     12 * Sun java sdk, we currently use "1.5.0_17" (Debian Lenny: sun-java5-jdk).
     13 * Database
     14  * The war is built to use an in memory database (hsqldb), this will NOT save data between restarts!
     15  * Most databases can be used, we currently use MySQL (Debian Lenny: mysql-server-5.0)
     16 * See the the DeveloperStartPage if you want to build a custom war.
    1017
    1118'''Steps'''
    1219
    13  * Download zip file
    14  * Extract the zip file into a directory of your choice
    15  * Run SQL script setup.sql
    16  * Copy the gnumims.war file into the [tomcat.home]/webapps folder or choose to upload through the Tomcat online console.
    17  * Point your web-browser to !http://myserver:port/gnumims
     20 * Copy the war file into the [$TOMCAT_HOME]/webapps folder or choose to upload through the Tomcat online console.
     21 * Point your web browser to !http://localhost:8180/gnuMims/ or !http://myserver:port/gnuMims .
    1822 * Sign on with the user name "admin" and password "pass"
    1923 * Start using gnuMims.
     
    2327 * In Debian add/adjust the following lines in /etc/default/tomcat5.5:
    2428  * JAVA_HOME=/usr/lib/jvm/java-1.5.0-sun/
     29  * JAVA_OPTS="-Djava.awt.headless=true -Xmx256M"
    2530  * TOMCAT5_SECURITY=no
    26 
    27  * Note: the security settings should not be used in production, see http://tomcat.apache.org/tomcat-5.5-doc/security-manager-howto.html
     31 * Note: the above security settings should not be used in production, see http://tomcat.apache.org/tomcat-5.5-doc/security-manager-howto.html